这是我第一次玩 PHP,我在制作基本的 if/then 语句时遇到了麻烦。我想做类似的事情
如果文件存在,则显示 html 代码,否则显示不同的 html 代码。
这是我目前所处的位置——
<?php
if ( file_exists('pdf/'.'htmlspecialchars($_POST['apt'], ENT_COMPAT)'.'.pdf') {
echo "the file exists";
} else {
echo "file does not exist";
}
?>
我认为这里的问题是我如何写
file_exists('pdf/'.'htmlspecialchars($_POST['apt'], ENT_COMPAT)'.'.pdf')
想法非常感谢!