Home >php教程 >PHP源码 >PHP采集微博

PHP采集微博

PHP中文网
PHP中文网Original
2016-05-25 17:12:151538browse

PHP采集微博

<?php
header("Content-type:text/html;charset=utf-8");
$weibo = file_get_contents(&#39;http://t.qq.com/starank&#39;);
 
$preg = &#39;/<div class="msgCnt">(.*)<\/div><div class="mediaWrap">/Uis&#39;;
preg_match_all($preg, $weibo, $string);
 
foreach ($string[1] as $key=>$value){
    echo delhtml($value)."<br/><br/><br/>";
}
 
function delhtml($str) // 清除HTML标签
{
    $st = -1; //开始
    $et = -1; //结束
    $stmp = array();
    $stmp[] = " ";
    $len = strlen($str);
    for($i = 0;$i < $len;$i++)
    {
        $ss = substr($str, $i, 1);
        if (ord($ss) == 60) // ord("<")==60
        {
            $st = $i;
        }
        if (ord($ss) == 62) // ord(">")==62
        {
            $et = $i;
            if ($st != -1)
            {
                $stmp[] = substr($str, $st, $et - $st + 1);
            }
        }
    }
    $str = str_replace($stmp, "", $str);
    return $str;
}
 
?>


                   

以上就是PHP采集微博的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn