예제
Example #1 list() 예제

<?php

$info = array('coffee', 'brown', 'caffeine');

// 모든 변수를 목록화한다
list($drink, $color, $power) = $info;
echo "$drink is $color and $power makes it special.\\n";

출처: <https://gakari.tistory.com/entry/PHP-list-함수-배열처럼-변수에-할당> [가카리의 공부방]

출처: <https://gakari.tistory.com/entry/PHP-list-함수-배열처럼-변수에-할당> [가카리의 공부방]