输入banner图图片脚本导航/分类

phparray_filter除去数组中的空字符元素_PHP教程

除去数组中的空字符元素
代码如下:

$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
)

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/324568.htmlTechArticle除去数组中的空字符元素 代码如下:

?php $str1_array=array('脚本之家','','http://www.gxlcms.com','','1654',''); $str1_array=array_filter($str1_array); pri...