关键字分析器

时间:2011-01-09 17:27:24

标签: php regex analysis text-manipulation text-analysis

我想知道用于制定关键字竞争的任何算法或PHP代码。关键字可以在每个网站和多个网站上使用多个网站。我想知道它的排名是如何得出的。

由于

2 个答案:

答案 0 :(得分:0)

你想要一个搜索引擎?这是一项非常雄心勃勃的任务。对志愿者驱动的PHP线程提出了很多要求。 由于我是一个好人,我会免费给你正则表达式,但你必须做一些挖掘来构建你想要的搜索引擎。

/<title>([^<])*</title>/gi

如果您真的对SE很认真,请尝试从this article from O'Rilley开始。

答案 1 :(得分:0)

Try get_meta_tags

示例#2 get_meta_tags()返回的内容(取自手册)

<?php
// Assuming the above tags are at www.example.com
$tags = get_meta_tags('http://www.example.com/');

// Notice how the keys are all lowercase now, and
// how . was replaced by _ in the key.
echo $tags['author'];       // name
echo $tags['keywords'];     // php documentation
echo $tags['description'];  // a php manual
echo $tags['geo_position']; // 49.33;-86.59
?>