从网页中提取关键字
- $meta = get_meta_tags('http://www.aseoe.com/');
- $keywords = $meta['keywords'];
- // Split keywords
- $keywords = explode(',', $keywords );
- // Trim them
- $keywords = array_map( 'trim', $keywords );
- // Remove empty values
- $keywords = array_filter( $keywords );
- print_r( $keywords );
效果如下
查找页面上的所有链接
使用DOM,你可以轻松从任何页面上抓取链接,代码示例如下:
- $html = file_get_contents('http://www.example.com');
- $dom = new DOMDocument();
- @$dom->loadHTML($html);
- // grab all the on the page
- $xpath = new DOMXPath($dom);
- $hrefs = $xpath->evaluate("/html/body//a");
- for ($i = 0; $i < $hrefs->length; $i++) {
- $href = $hrefs->item($i);
- $url = $href->getAttribute('href');
- echo $url.'<br />';
- }
已测试 完全可以实现。
本站欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-21-324-1.html
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-21-324-1.html