2014-09-03 51 views
0

我不知道使用PHP要求沒有找到類的構造函數

Fatal error: Class 'ctwitter_stream' not found in C:\wamp\www\twitter.tld\index.php on line 11 

這是我的代碼爲什麼我收到此錯誤

<?php 
    require 'ctwitter_stream.php'; 
    $t = new ctwitter_stream(); 
    $t->login("x", "y", "z", "z"); 
    $t->start(array('facebook', 'fbook', 'fb')); 
?> 

但在同一目錄中我已經得到了文件ctwitter_stream.php

class ctwitter_stream 
{ 
    private $m_oauth_consumer_key; 
    private $m_oauth_consumer_secret; 
    private $m_oauth_token; 
    private $m_oauth_token_secret; 

    private $m_oauth_nonce; 
    private $m_oauth_signature; 
    private $m_oauth_signature_method = 'HMAC-SHA1'; 
    private $m_oauth_timestamp; 
    private $m_oauth_version = '1.0'; 

    public function __construct() 
    { 
     // 
     // set a time limit to unlimited 
     // 
     set_time_limit(0); 
    } 
+6

你的ctwitter_stream.php,你已經用'<?php'開始這個文件了吧? – 2014-09-03 09:34:55

+0

嘗試'require __DIR __。'/ ctwitter_stream.php';'。如果您仍然收到錯誤,那麼該文件不在同一目錄中或不可讀。 – 2014-09-03 09:36:08

回答

-1

驗證文件{} ctwitter_stream.php路徑和權限。它應該 工作

+0

這不是一個有建設性的答案。如果路徑或權限錯誤,錯誤將會不同。充其量,你應該把它作爲評論發佈(你還沒有足夠的聲望,而且你沒有通過發佈這樣的答案來幫助你到達那裏)。 – deceze 2014-09-03 09:50:02

相關問題