以下是 class1.php 页
中的班级连接class Connection{
//my other functions
public function insert_data()
{
//my code
}
}
这是我在 class2.php 页面
中的另一个类mydatainclude('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()
我的代码有什么问题?
请帮帮我