我如何获得get()函数的值

时间:2014-04-07 08:44:21

标签: php oop

抱歉,我仍然是面向对象PHP的初学者。 我想问一下如何在index.page中的class.db.php中获取get()函数的数据

class.db.php

    public function get($table, $where){
        return $this->action('Select *', $table, $where);
}

Index.php我用什么脚本来检索数据?????

1 个答案:

答案 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);