I'm saos@ngmo

Tag: tiện ích

Code kiểm tra google page rank

by saosangmo on Dec.08, 2007, under Nice Scripts

Trong khi tìm kiếm thuật toán để kiểm tra google page rank của 1 trang web, mình sưu tầm được bài viết trên diễn đàn mobileread.com

Đoạn mã này được xây dựng bởi Alex Stapleton, Andy Doctorow, Vijay “Cyberax” Bhatter, và 1 vài thành viên khác của mobileread.com.

Nội dung:

<?php
/*
This code is released unto the public domain
*/
(continue reading…)

Leave a Comment :, , , , more...

Code PHP để check alexa rank

by saosangmo on Dec.07, 2007, under Nice Scripts

<?php
function alexaRank($domain)
{
$ch = curl_init(‘http://alexa.com/data/details/traffic_details?url=’.$domain);
curl_setopt($ch, CURLOPT_TIMEOUT, 50);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_USERAGENT, “Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1″);
$curl_ret = curl_exec($ch);
curl_close($ch); (continue reading…)

Leave a Comment :, more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!