PHP Code: 
check_remote_file_exists('http://xx.filebox.com:182/asd712y3123123/video/flv'); 
bluefrogx Reviewed by bluefrogx on . how to check remote file exist via php the file is on port 881 i find this script but it only work on port 80 function check_remote_file_exists($url) { $curl = curl_init($url); curl_setopt($curl, CURLOPT_NOBODY, true); $result = curl_exec($curl); Rating: 5