我已經上來的問題,而我嘗試寫一些類的問題, 這裏有一個例子: 我呼籲TwitterGrub這個類,我不能把它像:在PHP的面向對象
$c = new TwitterGrub();
$c->twitterDisplay();
這裏是類本身:
<?php
class TwitterGrub{
function twitterCapture($user = 'username',$password = 'pass') {
$ch = curl_init("https://twitter.com/statuses/user_timeline.xml");
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch,CURLOPT_TIMEOUT, 30);
curl_setopt($ch,CURLOPT_USERPWD,$user . ":" . $password);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
$result=curl_exec ($ch);
$data = strstr($result, '<?');
$xml = new SimpleXMLElement($data);
return $xml;
}
function twitterDisplay($twitNum = 2){
$xml = $this::twitterCapture();
for($i= 0; $i<$twitNum; $i++){
echo "<div class= 'curvebox'>".$xml->status[$i]->text."</div>";
}
}
}
?>
的問題是,每次我想改變我要跳回類定義的用戶名或密碼,這讓事情不是模塊化的...而且在許多感覺錯誤的方式。 所以問題是通過對象接口將我的用戶名和密碼偶然然後用新數據調用twitterDisplay()方法的正確方法?希望這是有道理的。 在此先感謝
謝謝菲利克斯! 所有的答案都很好,但我認爲你是最優雅的方式......幹得好 – rabidmachine9 2010-05-27 10:52:40