Hi Bruno, I read that, but using file_exists() on an existing remote file still returns false. (I run php 5.2.5)
$file = 'http://static.php.net/www.php.net/images/php.gif'; if (file_exists($file) == true) { echo $file . ' exists'; } else { echo $file . ' does NOT exist'; } -- View this message in context: http://n4.nabble.com/Check-if-an-image-exists-on-remote-server-tp1014172p1014665.html Sent from the Zend Framework mailing list archive at Nabble.com.
