本篇文章咔咔云站长教大家利用api代码一键获取目标网站的标题 关键词 描述等,接口是本地获取的,可用于域名一键获取标题、关键词、描述等操作,做导航的小伙伴可以看看,使用格式api地址+?url=查询域名,具体代码看下面:
<?php
if ($_GET['url']) {
$site='http://';
$url=trim($site.$_GET['url']);
$info=file_get_contents($url);
header('Content-type:text/json');
function _charset($url){
$text = file_get_contents($url);
$mode = '/charset=(.*)\"/iU';
preg_match($mode,$text,$result);
return $result[1];
}
$charset = _charset($url);
function _title($url,$charset){
$text = file_get_contents($url);
if ($charset == 'gb2312'){
$text = iconv('gb2312','utf-8',$text);
}
$mode = '/<title>(.*)<\/title>/iU';
preg_match($mode,$text,$result);
return $result[1];
}
echo '网站标题:'.$title = _title($url,$charset);
echo "\n";
function _keywords($url,$charset){
$text = file_get_contents($url);
if ($charset == 'gb2312'){
$text = iconv('gb2312','utf-8',$text);
}
$mode = '/<meta\s+name=\"keywords\"\s+content=\"(.*)\"\s?\/?>/iU';
preg_match($mode,$text,$result);
return $result[1];
}
echo '网站关键词:'.$keywords = _keywords($url,$charset);
echo "\n";
function _description($url,$charset){
$text = file_get_contents($url);
if ($charset == 'gb2312'){
$text = iconv('gb2312','utf-8',$text);
}
$mode = '/<meta\s+name=\"description\"\s+content=\"(.*)\"\s?\/?>/iU';
preg_match($mode,$text,$result);
return $result[1];
}
echo '网站简介:'.$description = _description($url,$charset);
}
?>
本站提供纯公益性接口,可一键直接获取,请大家合理使用,接口如下:
https://api.kkjsz.cn/api/title?url=输入你要查询的网站
本文首发于:https://www.kkjsz.cn/archives/213.html
本文共 142 个字数,平均阅读时长 ≈ 1分钟
评论 (0)