我读了一篇关于 google rank 的文章,我想创建一个 php 脚本,在 php 中使用 curl 获取页面排名 - 我最终使用了这个脚本:
http://www.brightyoursite.com/blog/2010/06/01/use-php-to-get-google-page-rank/
现在当我运行它时,我会在我的 ubuntu 上运行它:
致命错误:调用 /var/www/googlerank.php 中的未定义函数 curl_init() ....
我读了一篇关于 google rank 的文章,我想创建一个 php 脚本,在 php 中使用 curl 获取页面排名 - 我最终使用了这个脚本:
http://www.brightyoursite.com/blog/2010/06/01/use-php-to-get-google-page-rank/
现在当我运行它时,我会在我的 ubuntu 上运行它:
致命错误:调用 /var/www/googlerank.php 中的未定义函数 curl_init() ....
你必须安装php5-curl
.
在 Ubuntu 或 Debian 上,您可以通过运行apt-get install php5-curl
或aptitude install php5-curl
根据您用于管理软件包的命令来执行此操作。
您可以使用命令查看它当前是否已安装aptitude show php5-curl
。
只保留以下代码的 PHP 脚本总是好的:
<?php phpinfo() ?>
上面的代码将打印很多关于服务器、请求、已安装包等的信息,这些信息对于诊断问题很有用。如果php5-curl
已安装,您应该在此处的输出中找到“curl”部分。