PHP获取网站TDK标题API接口源码

admin 轻心小站 关注 LV.19 运营
发表于API源码版块 接口源码

php获取网站TDK标题API接口源码,目前只能获取标题接口源码:<?php if ($_GET['url']) { $site='https://

php获取网站TDK标题API接口源码,目前只能获取标题

接口源码:

<?php
if ($_GET['url']) {
$site='https://';
$url=trim($site.$_GET['url']);
$info=file_get_contents($url);
header('Content-type:text/json');
preg_match('|<title>(.*?)</title>|i',$info,$m);
if($url){ 
$result=array("code"=>"200","title"=>$m[1]);
echo json_encode($result,JSON_UNESCAPED_UNICODE);
}else{
$result=array("code"=>"201","meg"=>"ERREO");
echo json_encode($result,JSON_UNESCAPED_UNICODE);
}
}else{
$result=array("code"=>"201","meg"=>"ERREO");
echo json_encode($result,JSON_UNESCAPED_UNICODE);
}
?>

文章说明:

本文原创发布于探乎站长论坛,未经许可,禁止转载。

题图来自Unsplash,基于CC0协议

该文观点仅代表作者本人,探乎站长论坛平台仅提供信息存储空间服务。

评论列表 评论
发布评论

评论: PHP获取网站TDK标题API接口源码

粉丝

0

关注

0

收藏

0

已有0次打赏