App下载

demo_func_array_push 在线工具

demo_func_array_push 在线工具

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