Recently I set up GitHub sponsors, if my content helps you, you can consider a one-time or monthly sponsorship.

PHP 7.4 in 7 code blocks

PHP 7.4, the last edition in the 7.* series, brings lots of new and handy changes. This post lists the highlights, though there's much more to this release. You can read all about the full release in this post about what's new in PHP 7.4.

This is where the ad would go. Instead though, I'd like to point you towards my GitHub Sponsors page. If you're a regular reader and my content is helping you, you can consider a one-time or monthly sponsorship. If you're a company looking for dedicated ad placements on this blog or my newsletter, you can email me at brendt@stitcher.io


array_map(
    fn(User $user) => $user->id,
    $users
);

Arrow functions, a.k.a. short closures. You can read about them in depth in this post.


class A
{
    public string $name;
    
    public ?Foo $foo;
}

Type properties. There's quite a lot to tell about them.


$data['date'] ??= new DateTime();

The null coalescing assignment operator. If you're unfamiliar with the null coalescing operator, you can read all about shorthand operators in this blog.


class ParentType {}
class ChildType extends ParentType {}

class A
{
    public function covariantReturnTypes(): ParentType
    { /* … */ }
}

class B extends A
{
    public function covariantReturnTypes(): ChildType
    { /* … */ }
}

Improved type variance. If you're not sure what that's about, you should take a look at this post about Liskov and type safety.


$result = [...$arrayA, ...$arrayB];

The array spread operator. There are a few sidenotes to be made about them.


$formattedNumber = 107_925_284.88;

The numeric literal separator, which is only a visual aid.


[preloading]
opcache.preload=/path/to/project/preload.php

Preloading improves PHP performance across requests. It's a complicated topic, but I wrote about it here.

Noticed a tpyo? You can submit a PR to fix it. If you want to stay up to date about what's happening on this blog, you can follow me on Twitter or subscribe to my newsletter: