如何访问另一个类中的对象

时间:2016-08-29 13:18:59

标签: php

以下是 class1.php

中的班级连接
class Connection{
   //my other functions
   public function insert_data()
     {
         //my code
     } 
}

这是我在 class2.php 页面

中的另一个类mydata
include('class1.php');
$ob=new Connection(); //first class object
class mydata
    {
       //my other functions
       $ob->insert_data();//my query passes through this insert_data()
    }

它返回错误:致命错误:在//页面链接中的非对象上调用成员函数insert_data()
我的代码有什么问题?
请帮帮我

0 个答案:

没有答案