🌐
经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用
点我优惠购买
🚀
拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多
点我优惠购买
🛡️
稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少
点我优惠购买
温馨提示:这篇文章已超过529天没有更新,请注意相关的内容是否还可用!
原生PH获取标题(title)、描述(description)、关键字(keywords)代码,无需第三方API接口。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?PHP header( "content-type:text/html; charset=utf8" ); $arr = file( "http://www.hu6.cc" ); if ( $arr ){ foreach ( $arr as $a ){ if ( strchr ( $a , "<title>" )){ $a = str_ireplace ( "<title>" , "" , $a ); $a = str_ireplace ( "</title>" , "" , $a ); echo $a ; //标题 break ; } } } echo $meta_array [ "description" ]; //描述 ?> |
如果使用php.ini默认配置,用file_get_contents读取httPs的链接,就会如下错误:
1 | Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? |
解决方案:
1、php.ini中把extension=php_openssl.dll前面的;删掉,重启服务就可以了。
2、Linux下的PHP,安装openssl模块,安装好了以后就可以访问了。
3、如果不能修改配置,就只换curl函数来替代file_get_contents函数。
文章版权声明:除非注明,否则均为执刀人的工具库原创文章,转载或复制请以超链接形式并注明出处。
还没有评论,来说两句吧...