text, "@") != 0) { $tweet = $this->process_links($status->text); $result .= $t"/>
PHP头条
热点:

封装Twitter访问的PHP类-PHP源码


跳至

status as $key => $status) {
                if ($include_replies == true | substr_count($status->text, "@") == 0 | strpos($status->text, "@") != 0) {
                    $tweet = $this->process_links($status->text);

                    $result .= $tweet_o . $tweet . $tweet_c . $detail_o . date('D jS M y H:i', strtotime($status->created_at)) . $detail_c;
                }
            }

            $result .= $cont_c;
        } else {
            $result .= $cont_o . $tweet_o . "Twitter seems to be unavailable at the moment." . $tweet_c . $cont_c;
        }

        return $result;
    }

}

www.phpzy.comtrue/php/4152.htmlTechArticle封装Twitter访问的PHP类-PHP源码 跳至 status as $key => $status) { if ($include_replies == true | substr_count($status->text, "@") == 0 | strpos($status->text, "@") != 0) { $tweet = $this->process_links($status->text); $result .= $t...

相关文章

相关频道:

PHP之友评论

今天推荐