App下载

demo_func_list2 在线工具

demo_func_list2 在线工具

<?php
$my_array = array("Dog","Cat","Horse");

list($a, , $c) = $my_array;
echo "Here I only use the $a and $c variables.";
?>
运行结果