Setup
Install PHP and you get a built-in development web server — no Apache or nginx needed to learn.
Lessons
1
Hello, PHP
PHP's superpower and its quirk in one: PHP files are HTML files with code embedd…
→
2
Types, Conditions & Loops
PHP is dynamically typed but has grown a real type system. Learn the comparison …
→
3
Arrays — PHP's Swiss Army Knife
PHP has one collection type doing the job of lists, dictionaries, sets, and tupl…
→
4
Functions & Type Declarations
Modern PHP functions look almost like TypeScript: typed parameters, return types…
→
5
Classes & Modern OOP
PHP's object system is genuinely good now. Constructor property promotion, reado…
→
6
Composer & the Ecosystem
Composer is PHP's npm — dependency manager, autoloader, and the gateway to 400,0…
→
7
Handling Web Requests
PHP's home turf: a form posts to your script, you read the input, talk to a data…
→
8
PHP Cheatsheet
Modern PHP 8 syntax, arrays, and classes on one page.
→