Voting

: zero plus three?
(Example: nine)

The Note You're Voting On

carlosv775 at gmail dot com
8 years ago
In PHP 7.1 we can do the following:

<?php
[$a, $b, $c] = ['a', 'b', 'c'];
?>

Before, we had to do:

<?php
list($a, $b, $c) = ['a', 'b', 'c'];
?>

<< Back to user notes page

To Top