php
function my_headlines($url) {
$rdf = parse_url($url);
$fp = fsockopen($rdf['host'], 80, $errno, $errstr, 15);
if (!$fp) {
$content = "Problema!";
return;
}
if ($fp) {
fputs($fp, "GET " . $rdf['path'] . "?" . $rdf['query'] . " HTTP/1.0
");
fputs($fp, "HOST: " . $rdf['host'] . "
");
$string = "";
while(!feof($fp)) {
$pagetext = fgets($fp,300);
$string .= chop($pagetext);
}
fputs($fp,"Connection: close
");
fclose($fp);
$items = explode("",$string);
$content = "";
for ($i=0;$i $link = ereg_replace(".*","",$items[$i]);
$link = ereg_replace(".*","",$link);
$title2 = ereg_replace(".*
$title2 = ereg_replace("
if ($items[$i] == "") {
$content = "";
return;
} else {
if (strcmp($link,$title)) {
$cont = 1;
$content .= "
$title2
";
}
}
}
}
echo "$content";
}
my_headlines
?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号