抱歉,我仍然是面向对象PHP的初学者。 我想问一下如何在index.page中的class.db.php中获取get()函数的数据
class.db.php
public function get($table, $where){
return $this->action('Select *', $table, $where);
}
Index.php我用什么脚本来检索数据?????
答案 0 :(得分:-2)
你需要创建类的对象才能调用它的函数
class myclass {
public function get($table, $where){
return $this->action('Select *', $table, $where);
}
}
$table=htmlspecialchars($_POST['table']);
$where=htmlspecialchars($_POST['where']);
$obj=new myclass();
$var=$obj->get($table, $where);