Heim >Backend-Entwicklung >PHP-Problem >So ermitteln Sie, ob in PHP ein Remote-Image vorhanden ist
PHP-Methode, um festzustellen, ob ein Remote-Image vorhanden ist:
function file_exists($url) { $curl = curl_init($url); // 不取回数据 curl_setopt($curl, CURLOPT_NOBODY, true); // 发送请求 $result = curl_exec($curl); $found = false; // 如果请求没有发送失败 if ($result !== false) { // 再检查http响应码是否为200 }
fsockopen-Version:
$url = "http://www.baidu.com/img/baidu_sylogo1.gif"; $info = parse_url($url); $fp = fsockopen($info['host'], 80,$errno, $errstr, 30); fputs($fp,"GET {$info['path']} HTTP/1.1\r\n"); fputs($fp, "Host: {$info['host']}\r\n"); fputs($fp, "Connection: close\r\n\r\n"); $headers = array(); while(!feof($fp)) { $line = fgets($fp); if($line != "\r\n") { $headers[] = $line; }else { break; } } echo "<pre class="brush:php;toolbar:false">"; print_r($headers);
Verwenden Sie den HTTP-Statuscode, um festzustellen, ob das Die Antworten 302, 301, 404 usw. bedeuten beispielsweise, dass die Datei nicht vorhanden ist. Wenn sie 200, 304 usw. lautet, kann davon ausgegangen werden, dass die Datei vorhanden ist.
fopen()-Methode:
<?php $url = 'http://www.test.com/images/test.jpg'; if( @fopen( $url, 'r' ) ) { echo 'File Exits'; } else { echo 'File Do Not Exits'; } ?>
CURL-Methode:
<?php $url2 = 'http://www.test.com/test.jpg'; $ch = curl_init(); $timeout = 10; curl_setopt ($ch, CURLOPT_URL, $url2); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $contents = curl_exec($ch); //echo $contents; if (preg_match("/404/", $contents)){ echo '文件不存在'; } ?>
Empfohlen: PHP-Server
Das obige ist der detaillierte Inhalt vonSo ermitteln Sie, ob in PHP ein Remote-Image vorhanden ist. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!