菜单切换
FACESOHO知行者
心灵
记录
远方
赞赏工具
源代码
运行
保存
<html> <body> <?php $my_array = array("Dog","Cat","Horse"); list($a, , $c) = $my_array; echo "Here I only use the $a and $c variables."; ?> </body> </html>
运行结果
<!DOCTYPE html> <html> <body> Here I only use the Dog and Horse variables. </body> </html>