$filename = '/www/test1/*.pdf';
if (file_exists($filename))
{
echo "The file $filename exists";
}
else
{
echo "The file $filename does not exist";
}
我使用了上面的代码,但它检查 *.pdf 文件但不是所有文件都属于 .pdf 扩展名
$filename = '/www/test1/*.pdf';
if (file_exists($filename))
{
echo "The file $filename exists";
}
else
{
echo "The file $filename does not exist";
}
我使用了上面的代码,但它检查 *.pdf 文件但不是所有文件都属于 .pdf 扩展名