php echo if two conditions are true

こ雲淡風輕ζ 提交于 2019-12-09 16:52:04

问题


The actual code looks like this:

if (file_exists($filename)) {echo $player;

} else { 

echo 'something';

but it displays the player even if the id is not called from the url

i need something like this:

check if $filename exists and $id it is not empty then echo $player

if else echo something else

i check if $id is not empty with

if(empty($id)) echo "text";

but i don't know how to combine both of them

Can somebody help me?

Thank you for all your code examples but i still have a problem:

How i check if $id is not empty then echo the rest of code


回答1:


if (!empty($id) && file_exists($filename))



回答2:


Just use the AND or && operator to check two conditions:

if (file_exists($filename) AND ! empty($id)): // do something

It's fundamental PHP. Reading material:

http://php.net/manual/en/language.operators.logical.php

http://www.php.net/manual/en/language.operators.precedence.php




回答3:


You need the logical AND operator:

if (file_exists($filename) AND !empty($id)) {
    echo $player;
}



回答4:


if (file_exists($filename) && !empty($id)){
   echo $player;
}else{
   echo 'other text';
}



回答5:


you need to check $id along with file_exists($filename) as follows

if (file_exists($filename) && $id != '') {
echo $player;

} else { 
echo 'something';
}



回答6:


Using ternary operator:

echo (!empty($id)) && file_exists($filename) ? 'OK' : 'not OK';

Using if-else clause:

if ( (!empty($id)) && file_exists($filename) ) {
    echo 'OK';
} else {
    echo 'not OK';
}


来源:https://stackoverflow.com/questions/5927767/php-echo-if-two-conditions-are-true

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!