gpt4 book ai didi

php - 在不读取文件的情况下检查文件是否存在于不同的域中

转载 作者:行者123 更新时间:2023-12-02 05:22:23 26 4
gpt4 key购买 nike

有没有比这更好的方法来检查文件是否存在(它在不同的域中,所以 file_exists 不起作用)?

$fp = fsockopen($fileUri, 80, $errno, $errstr, 30);
if (!$fp) {
// file exists
}
fclose($fp);

最佳答案

我喜欢这个。它总是工作正常:

$url = "http://www.example.com/index.php";
$header_response = get_headers($url, 1);
if ( strpos( $header_response[0], "404" ) !== false )
{
// FILE DOES NOT EXIST
}
else
{
// FILE EXISTS!!
}

关于php - 在不读取文件的情况下检查文件是否存在于不同的域中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4095193/

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