Files
php_8/arrays/list.php
2022-04-18 08:53:24 +03:00

7 lines
111 B
PHP

<?php
$arr = [1, 2, 3];
list($one, $two, $three) = $arr;
echo $one; // 1
echo $two; // 2
echo $three; // 3