欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP对象编程有关问题,Call to a member function hello() on a non-object

程序员文章站 2023-12-30 14:09:58
...
PHP对象编程问题,Call to a member function hello() on a non-object

$instest = new test();
$insobject = new object();
$insobject->objectValue = "final";
$instest->test();

class test{
var $testValue = "testValueins";
function test(){
print_r($insobject);
$insobject->hello();
}
}

class object{
var $objectValue = "original";
function hello(){
echo $objectValue;
}
}

?>


报错如下

Notice: Undefined variable: insobject in C:\wamp\www\zhebo\test.php on line 11
Call Stack
Notice: Undefined variable: insobject in C:\wamp\www\zhebo\test.php on line 12
Fatal error: Call to a member function hello() on a non-object in C:\wamp\www\zhebo\test.php on line 12

这有什么问题么,怎样才可以达到在实例里引用别的实例里的方法,或者有什么更好地解决方法?
我很急,希望大家可以帮忙。非常感谢啊。非常紧急。第一次用对象的思想编程还不太懂啊。

网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • PHP对象编程有关问题,Call to a member function hello() on a non-object
  • 专题推荐

    作者信息
    PHP对象编程有关问题,Call to a member function hello() on a non-object

    认证0级讲师

    推荐视频教程
  • PHP对象编程有关问题,Call to a member function hello() on a non-objectjavascript初级视频教程
  • PHP对象编程有关问题,Call to a member function hello() on a non-objectjquery 基础视频教程
  • 视频教程分类

    上一篇:

    下一篇: