2024年05月28日 建站教程
方法一:利用unset()函数
$colors = array("red", "green", "blue", "yellow"); unset($colors[1]);
方法二:利用array_diff()函数
$colors = array("red", "green", "blue", "yellow"); $colors = array_diff($colors, array("green"));
本文链接:http://so.lmcjl.com/news/5470/