Summer sale! Save 50% on access to our entire library of courses.Join here →

Courses

Course
PHP
Build Your Own PHP Framework

Starting completely from scratch, build a modern PHP framework with all the features you’d expect. Whether you’re new to PHP or not, this is a great exercise for learning what happens under the hood, arming you with knowledge you can apply anywhere you use PHP. We’ll cover routing, controllers, views, the container, accessing the database, models, authentication, config, CSRF protection, exception handling, pagination, validation, flashing messages and much more. Let’s dive in and build a PHP framework, step-by-step!

54 episodes
4 hrs 45 mins
Course
PHP
PHP Enums

Enums represent a typed set of possible values in PHP. For example, if you're storing a Book that can have a status of __want to read__, __reading__ or __read__, an Enum will hold these values in one place that you can reference anywhere. Prior to PHP 8.1 (when Enums were added), you'd have to work with a simple class with constants. While that works fine, it doesn't provide much power under the hood. In this course, we'll look at the power of Enums and how they can drastically simplify your code.

7 episodes
31 mins
Course
PHP
New in PHP 8

PHP 8 boasts some great additions. Here's a practical look at the changes most likely to affect your day-to-day development.

11 episodes
1 hr 3 mins
Course
PHP
New in PHP 7.4

Here’s a look at the additions and changes in PHP 7.4 that are most likely to improve or affect your day-to-day development.

12 episodes
44 mins
Course
PHP
PHP Arrow Functions

Arrow functions (also known as short closures) have been available since PHP 7.4. This course covers everything you need to know about them, while considering if they’re always the best solution to reach for.

6 episodes
27 mins
Course
PHP
Array Destructuring in PHP

When you need to pull values from arrays, destructuring often makes sense. In this course, we'll dive into everything you need to know about destructuring arrays in PHP.

9 episodes
23 mins
Course
PHP
Build a PHP Validator From Scratch

A validator featuring rule objects, string rule mapping, wildcard validation and more. All built completely from scratch with zero dependencies.

18 episodes
1 hr 53 mins
Course
PHP
All About Exceptions

Let's cover everything you need to know about exceptions in PHP.

7 episodes
1 hr 51 mins
Course
PHP
Every PHP Magic Method

A practical dive into every PHP magic method. You might never use them all, but they're well worth knowing, just in case.

17 episodes
1 hr 55 mins
Course
PHP
The Pagination Builder

Let's build PHP pagination from scratch, creating an algorithm to build page links, and a formatter to transform links into an HTML view.

10 episodes
1 hr 4 mins