PHP 8.4.24 Released!

Voting

: min(zero, zero)?
(Example: nine)

The Note You're Voting On

nek dot dev at gmail dot com
3 years ago
It can be convenient to specify a default value in case an element is missing in the list. You can use operator + for this:

<?php
$someArray = ['color' => 'orange'];
['color' => $color, 'size' => $size] = $someArray + ['color' => null, 'size' => null];
?>

This will avoid the warning `Undefined array key "size"` you would encounter otherwise.

<< Back to user notes page

To Top