App下载

demo_func_array_pop 在线工具

demo_func_array_pop 在线工具

<?php
$a=array("red","green","blue");
array_pop($a);
print_r($a);
?>
运行结果