App下载

demo_func_array_shift 在线工具

demo_func_array_shift 在线工具

<?php
$a=array("a"=>"red","b"=>"green","c"=>"blue");
echo array_shift($a)."<br>";
print_r ($a);
?>
运行结果