我想制作一个逻辑来检查多个条件,而不使用if else条件数。
我有4个变量,我必须检查它是否为空。 如果其中一个变量是空白而不想做某事。
我有这样的功能..
function searchResult($genre, $subject, $type, $grade){
// checking conditions here
}
请建议我简单的方法。
答案 0 :(得分:1)
您也可以使用<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<section id="blog-area">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="news-paper-Name">
<iframe class="nfg320x210" scrolling="no" frameborder="0" src="http://www.gooplusplus.com/news-topic.html?h#TITLE"></iframe>
</div>
</div>
<div class="col-md-6">
<div class="display">
<iframe scrolling="no" frameborder="0" width="320"
src="http://www.gooplusplus.com/dark-topic-head.html?h&ned=in&hl=hi# हिंदी  (india)"></iframe>
</div>
</div>
</div>
</div>
</section>
,func_get_args
和array_filter
:
func_num_args
注意array_filter函数:
如果没有提供回调,则将删除所有等于FALSE(see converting to boolean)的数组条目。
答案 1 :(得分:0)
function searchResult($genre, $subject, $type, $grade){
if((!empty($genre)) && (!empty($subject)) && (!empty($type)) )
{
echo "not empty";
}
else
{
echo "empty";
}
}