App\Controller\Db::apt_test PHP Method

apt_test() public method

public apt_test ( )
    function apt_test()
    {
        $apt = new Swoole\SelectDB($this->db);
        $apt->from('users');
        $apt->equal('id', 1);
        $res = $apt->getall();
        var_dump($res);
    }