码迷,mamicode.com
首页 > Web开发 > 详细

PHP获得网页源码

时间:2014-09-14 13:58:47      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:http   ar   for   sp   代码   c   html   line   ad   

获取网页源代码:

<?php

$lines = file(‘http://www.hoverreader.com/‘);

foreach ($lines as $line_num => $line) {
   echo "Line <b>{$line_num}</b> : " . htmlspecialchars($line) . "<br />/n";
}

?>

获取网页的标题:

<?  
$url = ‘http://www.hoverreader.com/‘;  
$lines_array = file($url);  
$lines_string = implode(‘‘, $lines_array);  
eregi("<head>(.*)</head>", $lines_string, $head);  
echo $head[0];  
?> 

PHP获得网页源码

标签:http   ar   for   sp   代码   c   html   line   ad   

原文地址:http://www.cnblogs.com/kyxyes/p/3970912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!