User Tools

Site Tools


informatica:linux:php:funciones

Obtener código HTTP

<?php
function get_link_header($aUrl) {
if (preg_match("/^http:\/\//",$aUrl)) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $aUrl);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_exec($ch);
$info = curl_getinfo($ch);
curl_close ($ch);
if (!empty($info)) {
return $info['http_code'];
} else {
return 0;
}
} else {
return 0;
}
}
informatica/linux/php/funciones.txt · Last modified: 2015/04/13 20:19 by 127.0.0.1