php 去除数组空值
我们要使用教程中经常会看到关于如何去除php数据中的空值了,下面我们提供二种去除空值的方法
<?php $t = ",,,,中国WEB第一站,www.phprm.com"$ar = explode(',', $t); function filter($var) { if ($var == '') { return false; } return true; } array_filter($ar, "filter"); /* foreach( $ar as $temp=>$k) { if( $k ) { unset( $ar[$k] ); } } print_r( $ar ); */
上面函数得出的结果为
中国WEB第一站,www.phprm.com
本文地址:http://www.phprm.com/code/688b218e6b59fb0a994badcccc83a193.html
转载随意,但请附上文章地址:-)