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

5 lines
61 B
PHP

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