Voting

: min(eight, two)?
(Example: nine)

The Note You're Voting On

Paul Marti
5 years ago
Since 7.1.0, you can use an array directly without list():

<?php
[$test, $test2] = explode(",", "hello, world");
echo
$test . $test2; // hello, world
?>

<< Back to user notes page

To Top