gpt4 book ai didi

php - PHP错误字符串

转载 作者:行者123 更新时间:2023-12-03 07:48:06 25 4
gpt4 key购买 nike

我将如何获得:

print (!$getTemplate) ? "Cannot Find Template File!" : "Template OK!";

用作:
if (!$getTemplate)
{
echo "Cannot Find Template File!";
}
else
{
echo "Template OK!";
};

我尝试了很多方法,但是找不到,在PHP上我还是很新的。

最佳答案

很难说出您的问题出了什么问题,但我建议您这样做。

您可以尝试使用file_exists();
例如:

稍后进行编辑以包括OP的编辑:

$getTemplate = '/path/to/file.html';

if ( ! file_exists($getTemplate))
{
echo "Cannot Find Template File!";
}
else
{
echo "Template OK!";
// fopen, fwrite, fclose here
}

关于php - PHP错误字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10230358/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com