「PHP」get_headers()でhttpレスポンスコードを取得

サンプルコード

function get_http_response_code($theURL) {
$headers = get_headers($theURL);
return substr($headers[0], 9, 3);
}

PHP

Posted by arkgame