0

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

谢谢

4

2 回答 2

0

你想要一个搜索引擎?这是一项相当雄心勃勃的任务。关于志愿者驱动的 PHP 线程有很多问题要问。由于我是个好人,我会免费为您提供正则表达式,但您必须进行一些挖掘才能构建您想要的搜索引擎。

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

如果您真的对 SE 很认真,请尝试从 O'Rilley 的这篇文章开始

于 2011-01-09T17:46:22.673 回答
0

尝试 get_meta_tags

Example #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
?>
于 2011-01-09T18:15:02.433 回答