mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
7 lines
111 B
PHP
7 lines
111 B
PHP
<?php
|
|
$arr = [1, 2, 3];
|
|
list($one, $two, $three) = $arr;
|
|
echo $one; // 1
|
|
echo $two; // 2
|
|
echo $three; // 3
|