radius Posted February 28, 2006 Share Posted February 28, 2006 Hi,I was using latest php5 but as I couldn't find a ffmpeg-php extension for it, I actually swapped to latest php4, and now I'm having a problem when using fopen for urls, when it's used it just stops the script with no error / warning, i tried using the same php.ini used with my php5 too but it changes nothing.Btw allow_url_fopen is enabled.Thanks if someone can help. Link to comment https://forums.phpfreaks.com/topic/3769-strange-fopen-problem/ Share on other sites More sharing options...
phpfreakjav Posted October 8, 2010 Share Posted October 8, 2010 <?php function http_file_exists($url) { $f=@fopen($url,"r"); if($f) { fclose($f); return true; } return false; } ?> Link to comment https://forums.phpfreaks.com/topic/3769-strange-fopen-problem/#findComment-1120296 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.