原生PH獲取標題(title)、描述(description)、關鍵字(keywords)代碼,無需第三方API接口。
<?php header("content-type:text/html; charset=utf8"); $arr = file("http://www.zztuku.com"); if($arr){ foreach($arr as $a){ if(strchr($a,"<title>")){ $a = str_ireplace("<title>","",$a); $a = str_ireplace("</title>","",$a); echo $a;//標題 break; } } } $meta_array = get_meta_tags('http://www.zztuku.com'); echo $meta_array["keywords"];//關鍵詞 echo $meta_array["description"];//描述 ?>
如果使用PHP.ini默認配置,用file_get_contents讀取https的鏈接,就會如下錯誤:
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函數。