如何调用这个php函数

时间:2013-07-27 16:01:54

标签: php mysql class

// Gets a single row from $from where $where is true    
    function Select($from, $where='', $orderBy='', $limit='', $like=false, $operand='AND',$cols='*'){

Let's say I created the object  - 
$oMySQL = new MySQL();

$oMySQL->Select();

如果我正在执行此查询- SELECT * FROM users where email='$email'"

我可以插入和其他所有 - 但我很困惑如何制作select();

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

由于我不知道如何实现Select函数,我会假设这样:

$oMySQL->Select('users', "email='$email'");