实际代码如下所示:
if (file_exists($filename)) {echo $player;
} else {
echo 'something';
但即使没有从 url 调用 id,它也会显示播放器
我需要这样的东西:
check if $filename exists and $id it is not empty then echo $player
if else echo something else
我检查 $id 是否不为空
if(empty($id)) echo "text";
但我不知道如何将它们结合起来
有人可以帮助我吗?
感谢您提供所有代码示例,但我仍然遇到问题:
我如何检查 $id是否不为空然后回显其余代码