我有一个子域映射到父域内的子文件夹。 我想使用其父域的图像
我可以通过在链接到文件的图像标记中使用标准href链接到图像。
<img href="http://www.reelfilmlocations.com/images/myimage.jpg"/>
我的问题是我需要运行一些检查以查看图像是否存在,如果没有则显示占位符图像。
我已将所有代码放到测试页面上,图像标记显示图像正常,但我使用curl或get_headers进行的任何调用都会返回404或403错误。
这两个域都位于同一帐户下的同一个专用服务器上,并且它们使用相同的凭据,因此它不是安全问题(我与我的主机核对)
那么为什么图像会通过html显示但我无法通过php获得200响应
我的测试页面位于http://mobile.reelfilmlocations.co.uk/untitled.php
<?php
function remoteFileExists($url) {
//$url = str_replace(" ", '%20', $url);
$agent = 'User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.15) Gecko/20080623 Firefox/2.0.0.15';
$curl = curl_init($url);
//don't fetch the actual page, we only want to check the connection is ok
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_USERAGENT, $agent);
//do request
$result = curl_exec($curl);
echo('curl result: '.$result.'<br>');
$ret = false;
//if request did not fail
if ($result !== false) {
//if request was ok, check response code
$statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
echo('curl status: '.$statusCode.'<br>');
if ($statusCode == 200 ) {
$ret = true;
}
}
curl_close($curl);
return $ret;
}
function get_response_code($theURL) {
$headers = get_headers($theURL);
foreach ($headers as $key => $value){
echo "$key => $value\n";
}
return substr($headers[0], 9, 3);
}
$image1 = 'http://www.reelfilmlocations.co.uk/uploads/images/thumbs/no-image.jpg';
$image2 = 'http://www.reelfilmlocations.co.uk/uploads/images/thumbs/Boston%20Manor%20M4-9.jpg';
$image3 = 'http://www.reelfilmlocations.co.uk/uploads/images/thumbs/thisimagedoesnotexist.jpg';
?>
IMAGE 1: <?php echo($image1); ?> (this image does exist)<br /><br />
<?php echo(remoteFileExists($image1)); ?><br />
<?php echo(get_response_code($image1)); ?><br />
<img src='<?php echo($image1); ?>'/><br /><br />
IMAGE 2: <?php echo($image1); ?> (this image does exist)<br />
<br />
<?php echo(remoteFileExists($image2)); ?><br />
<?php echo(get_response_code($image2)); ?><br />
<img src='<?php echo($image2); ?>'/><br /><br />
IMAGE 2: <?php echo($image3); ?> (this image does not exist)<br />
<br />
<?php echo(remoteFileExists($image3)); ?><br />
<?php echo(get_response_code($image3)); ?><br />
<img src='<?php echo($image3); ?>'/><br />
答案 0 :(得分:1)
你最好用JS展示占位符:
<img href="http://www.reelfilmlocations.com/images/myimage.jpg" onerror="this.src=PLACEHOLDER_URL"/>
另外,要指定图像路径,请使用“src”而不是“href”
<img src="http://www.reelfilmlocations.com/images/myimage.jpg" onerror="this.src=PLACEHOLDER_URL"/>