欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 获取网页源代码、网页标题的实现代码

程序员文章站 2022-04-15 19:45:50
...
  1. $lines = file('http://bbs.it-home.org/');
  2. foreach ($lines as $line_num => $line) {
  3. echo "Line {$line_num} : " . htmlspecialchars($line) . "
    \n";
  4. }
  5. ?>
复制代码

2,获取网页的标题:

  1. $url = 'http://bbs.it-home.org';
  2. $lines_array = file($url);
  3. echo $lines_array;
  4. echo "
    ";
  5. $lines_string = implode('', $lines_array);
  6. eregi("(.*)", $lines_string, $head);
  7. echo "head:".$head;
  8. echo "
    ";
  9. print_r($head);
  10. echo "
    ";
  11. echo "title:".$head[1];
  12. ?>
复制代码