如何利用php语法获取网站标题

2024年09月09日 建站教程

php开发中,如何利用php​语法获取网站标题?下面web建站小编给大家简单介绍一下!​

具体实现代码如下:

<?php
  $url = "https://example.com";
  $html = file_get_contents($url);
  if($html) {
    preg_match("/<title>(.*)</title>/siU", $html, $matches);
    $title = $matches[1];
    echo "页面标题为:".$title;
  } else {
    echo "无法获取网页源代码";
  }

?>

本文链接:http://so.lmcjl.com/news/12614/

展开阅读全文
相关内容