【】Fatal error: Call to a member function * on a non-object

來源:互聯網
上載者:User
【緊急求助】Fatal error: Call to a member function *** on a non-object
本帖最後由 keric2008 於 2013-08-26 18:33:02 編輯

原始碼很長,抽象下,大概流程是這樣的。

{
$instest = new test();
$insobject = new object();
$instest->test();
}

class test{
function test(){
$insobject->hello();
}
}

class object{
function hello(){
echo "hello";
}
}
這樣就會出現 如題的錯誤:Fatal error: Call to a member function hello() on a non-object in /home/latelx64/workspace/zhebo/init.php on line 158

難道是在執行個體裡不能調用其他執行個體的public函數嗎?

如果不能的話應該如何以類似的方式解決呢???
本人新學PHP,希望各位高手給予指導!!! php class

分享到:


------解決方案--------------------
這與物件導向無關!
只是個變數範圍的問題!
class test{
function test(){
$insobject->hello();
}
}
中 $insobject 是局部變數,並且也沒有賦值。
當然也就沒有 hello 方法了
------解決方案--------------------
class test{
function test(){
object::hello();
}
}

class object{
Public static function hello(){
echo "hello";
}
}
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.