php语法如何去除数组中的指定元素

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/

展开阅读全文
相关内容