What are the potential pitfalls of using file_exists on remote files in PHP?

When using file_exists on remote files in PHP, there are potential pitfalls such as slower performance due to network latency and security risks if the remote file path is user-controlled. To solve this issue, it is recommended to use other methods like fopen or cURL to check for the existence of remote files.

// Check for the existence of a remote file using cURL
function remote_file_exists($url) {
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_NOBODY, true);
    curl_exec($ch);
    $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    
    return $httpCode == 200;
}

// Example of checking if a remote file exists
$url = 'https://example.com/remote-file.txt';
if (remote_file_exists($url)) {
    echo 'Remote file exists!';
} else {
    echo 'Remote file does not exist.';
}