时间:2021-07-01 10:21:17 帮助过:30人阅读
$str1_array=array('脚本之家','','http://www.gxlcms.com','','1654','');
$str1_array=array_filter($str1_array);
print_r($str1_array);
?>
显示结果:
代码如下:
Array
(
[0] => 脚本之家
[2] => http://www.gxlcms.com
[4] => 1654
)
http://www.bkjia.com/PHPjc/324568.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/324568.htmlTechArticle除去数组中的空字符元素 代码如下:
?php $str1_array=array('脚本之家','','http://www.gxlcms.com','','1654',''); $str1_array=array_filter($str1_array); pri...