gpt4 book ai didi

php - 获取页面/url 的标题

转载 作者:行者123 更新时间:2023-11-28 14:00:54 25 4
gpt4 key购买 nike

使用 php 或 javascript 我想获取页面的标题鼓励任何帮助

最佳答案

佩尔马克的回答。如果使用 JavaScript,您必须获取服务器端脚本才能获得效果

JavaScript:(这只会为您提供当前页面的标题):

<script language="JavaScript">
alert(document.title);
document.title='YOUR TITLE HERE'; //to set title
</script>

这是 php 的方法:

$url = "http://www.google.com";
$file = file_get_contents($url);

if(preg_match("/<title>(.+)<\/title>/i",$file,$result)
print "The title of $url is <b>$result[1]</b>";
else
print "The page doesn't have a title tag";

这是根据很久以前的帖子我的书签修改的,以达到相同的效果credit source

关于php - 获取页面/url 的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5205892/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com