Get "PHP 8 in a Nuthshell" (Now comes with PHP 8.3)
Amit Merchant

Amit Merchant

A blog on PHP, JavaScript, and more

First-class callables in PHP 8.1

The newest release of PHP, v8.1, is around the corner and it will introduce a whole lot of new features, from the read only properties to the native enums. It’s pretty exciting!

In this article though, I want to discuss a relatively small feature that is going to end up in PHP 8.1.

It’s called “First-class callables”.

First-class callables

According to this RFC, PHP 8.1 is going to come with a new first-class callable syntax that can be used instead of existing encodings using strings and arrays.

An example from the RFC itself,

// prior to PHP 8.1
$fn = Closure::fromCallable('strlen'); 

// in PHP 8.1
$fn = strlen(...);

Here, as you can see, before PHP 8.1, if you would need to make the strlen function a Closure, you would need to do it using the Closure::fromCallable() method (which was introduced in PHP 7.1).

But starting from PHP 8.1, this is simplified using the first-class callables. Now, all you need to do is to use a callable as a Closure by calling the function itself and passing in the spread operator (argument unpacking) as an argument. That’s it!

The advantage is that this new syntax is accessible to static analysis, and respects the scope at the point where the callable is created.

A practical example

To understand this in a better way, let me show you a simple example where you can use the new first-class callable syntax.

Imagine the following array_map example where we pass in an array that will be iterated over by a cube function.

Here’s how you can write it in versions before PHP 8.1.

function cube($n)
{
    return ($n * $n * $n);
}

$a = [1, 2, 3, 4, 5];
$b = array_map('cube', $a);
print_r($b);
/*
Array
(
    [0] => 1
    [1] => 8
    [2] => 27
    [3] => 64
    [4] => 125
)
*/

On the other hand, if you want to write the same example in PHP 8.1 using first-class callable syntax, you can do it like so.

function cube($n)
{
    return ($n * $n * $n);
}

$a = [1, 2, 3, 4, 5];
$b = array_map(cube(...), $a);
print_r($b);
/*
Array
(
    [0] => 1
    [1] => 8
    [2] => 27
    [3] => 64
    [4] => 125
)
*/

As you can tell, now it has become more readable since instead of using a string, we’re now calling the function itself.

And on top of it, it’s now IDE friendly as well since now you can jump over to the functions directly in supported IDEs!

Learn the fundamentals of PHP 8 (including 8.1, 8.2, and 8.3), the latest version of PHP, and how to use it today with my new book PHP 8 in a Nutshell. It's a no-fluff and easy-to-digest guide to the latest features and nitty-gritty details of PHP 8. So, if you're looking for a quick and easy way to PHP 8, this is the book for you.

Like this article? Consider leaving a

Tip

👋 Hi there! I'm Amit. I write articles about all things web development. You can become a sponsor on my blog to help me continue my writing journey and get your brand in front of thousands of eyes.

Comments?