首页
关于
推荐
友情链接
Search
1
TikTok跨境电商从0-1全链路全方位实操教程,把握多元变化中的全球生意机会
11 阅读
2
普通人如何用ai做自媒体,AI图书博主变现流程
9 阅读
3
deepseekAI高级指令工具合集
9 阅读
4
DeepSeek获客特训营:掌握不出镜视频制作,日产百条IP口播视频
8 阅读
5
仿新浪微博typecho主题源码
7 阅读
默认分类
登录
Search
标签搜索
DeepSeek
ai
源码
跨境电商
TikTok
PHP
剪映
WordPress
PanTools
前端体系课
营销
MaGe
累计撰写
15
篇文章
累计收到
1
条评论
首页
栏目
默认分类
页面
关于
推荐
友情链接
搜索到
1
篇与
的结果
2025-03-20
PHP获取网页标题和内容信息接口
$url = filter(get('url'));if (!$url) {return json(['code' => -1, 'msg' => '链接不能为空!']);} else if (get_curl($url) === false) {return json(['code' => -1, 'msg' => '提交的网址无法访问!']);}$data = get_curl($url);//Titlepreg_match('/([\w\W]*?)</TITLE>/si', $data, $Title);if (!empty($Title[1])) {$title = $Title[1];}//Keywordspreg_match('/<META\s+name="keywords"\s+content="([\w\W]*?)"/si', $data, $Keywords);if (empty($Keywords[1])) {preg_match("/<META\s+name='keywords'\s+content='([\w\W]*?)'/si", $data, $Keywords);}if (empty($Keywords[1])) {preg_match('/<META\s+content="([\w\W]*?)"\s+name="keywords"/si', $data, $Keywords);}if (empty($Keywords[1])) {preg_match('/<META\s+http-equiv="keywords"\s+content="([\w\W]*?)"/si', $data, $Keywords);}if (!empty($Keywords[1])) {$keywords = $Keywords[1];}//Descriptionpreg_match('/<META\s+name="description"\s+content="([\w\W]*?)"/si', $data, $Description);if (empty($Description[1])) {preg_match("/<META\s+name='description'\s+content='([\w\W]*?)'/si", $data, $Description);}if (empty($Description[1])) {preg_match('/<META\s+content="([\w\W]*?)"\s+name="description"/si', $data, $Description);}if (empty($Description[1])) {preg_match('/<META\s+http-equiv="description"\s+content="([\w\W]*?)"/si', $data, $Description);}if (!empty($Description[1])) {$description = $Description[1];}if ($Title[1] !== "") {dataLog('URL['.$url.发布单页信息获取成功!','1','1'); $result = array('code'=>0,'msg'=>'获取成功!','title'=>$title,'keywords'=>$keywords,'description'=>$description);} else {$result = array('code'=>-1,'msg'=>'站点信息获取失败!');}if (json_encode($result) === false) {return json(['code' => -1, 'msg' => '站点信息获取失败!']);} else {return json($result);}
2025年03月20日
2 阅读
0 评论
0 点赞