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

WBOY
Release: 2016-06-23 13:47:39
Original
1019 people have browsed it

$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>";}
Copy after login
我的abc
我的cde
我的def

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template