首页 >后端开发 >php教程 > Catchable fatal error: Object of class dUser could not be converted to string in on line 16解决方案

Catchable fatal error: Object of class dUser could not be converted to string in on line 16解决方案

WBOY
WBOY原创
2016-06-13 13:45:571430浏览

Catchable fatal error: Object of class dUser could not be converted to string in on line 16
当运行getUserByName时,提示:Catchable fatal error: Object of class dUser could not be converted to string in on line 16的错误。不知道是哪里的问题,请大家帮忙指导。谢谢!!!


PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php class dUser
{
    public function newpdo() {
        global $dbinfo;

        $dsn = "mysql:host={$dbinfo['host']};port={$dbinfo['port']};dbname={$dbinfo['dbname']}";
        $pdo = new PDO($dsn, $dbinfo['user'], $dbinfo['pwd'], array(PDO::ATTR_PERSISTENT => true));
        return $pdo;
    }

     public function getUserByName(&$info, $name) {
        $dbpdo = $this->newpdo();
        $sql = "SELECT * FROM `usermember` WHERE `user`=?";
        $st = $dbpdo->prepare('SELECT * FROM `usermember` WHERE `user`=?');
        $bRet = $st->execute(array($name));
        $info = $st->fetch(PDO::FETCH_ASSOC);

        return $bRet;
     }
}

?>


------解决方案--------------------
参数$name被带入了一个类dUser变量.
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn