Home  >  Article  >  Backend Development  >  php 循环输出数组里元素时,空的元素不输出,怎么写

php 循环输出数组里元素时,空的元素不输出,怎么写

WBOY
WBOYOriginal
2016-06-23 13:47:391026browse

$array = array('a' => "abc", 'b' => "",'c' =>"cde",'d' =>"def",'e'=>"");

我想要的结果是:

我的abc
我的cde
我的d


回复讨论(解决方案)

$array = array('a' => "abc", 'b' => "",'c' =>"cde",'d' =>"def",'e'=>"");foreach($array as $v) {  if(!empty($v)) echo "我的$v<br>";}
我的abc
我的cde
我的def

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php安装zendDebugNext article:倒计时相关函数 php