💡 PHP Koncepter
Forstå de vigtigste koncepter i moderne PHP programmering
Closures & Anonymous Functions
Fundamentals
Anonymous functions, closures, arrow functions og callback patterns i moderne PHP
Composer Autoloading
Tools
Automatisk loading af PHP classes med Composer's PSR-4 autoloader
Dependency Injection
Design Patterns
Inversion of Control pattern til løs kobling mellem components
Error & Exception Handling
Fundamentals
Try-catch blocks, custom exceptions, error handlers og Throwable hierarchy i moderne PHP
Generators & Iterators
Fundamentals
Memory-effektiv iteration med yield keyword, generator functions og generator delegation i PHP
Magic Methods
Fundamentals
Special methods som __construct, __get, __set, __call, __toString, __invoke og andre magic methods i PHP
Namespaces
Fundamentals
Organisering af kode og undgåelse af navnekonflikter med namespaces
Object-Oriented Programming (OOP)
Fundamentals
Objektorienteret programmering i PHP med classes, objects, inheritance og encapsulation
PSR Standards
Standards
PHP Standard Recommendations for code style og arkitektur
Standard PHP Library (SPL)
Fundamentals
Built-in collection af interfaces, classes og functions til iteration, data structures og exceptions
Traits
Advanced
Genbrugelige metoder på tværs af multiple classes uden inheritance
PHP Type System
Fundamentals
Scalar types, union types, intersection types, mixed, never, void og type declarations i moderne PHP