PHP 404 判定と js 404 判定
php 判定 404:
$url = home_url()."/wp-content/themes/twentythirteen/pic/".$result['pic']; $headers = @get_headers($url); if(strpos($headers[0],'404') ) { $url=home_url()."/wp-content/themes/twentythirteen/pic/default.png"; }
js 判定 404:
var pic_url ="/wp-content/themes/twentythirteen/pic/"+data[i].pic; $.ajax({ url:pic_url, error:function(xhr, error, ex){ if (xhr.status == '404') { pic_url = "/wp-content/themes/twentythirteen/pic/default.png"; } }, success:function(){ pic_url = pic_url; } });
js 判定 404、ajax 経由...
上記関連コンテンツを含む PHP 404 判定と js 404 判定を紹介します。さらに関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) に注目してください。