Maison > développement back-end > tutoriel 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
Libérer: 2016-06-13 13:45:57
original
1429 Les gens l'ont consulté

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;
     }
}

?>
Copier après la connexion


------解决方案--------------------
参数$name被带入了一个类dUser变量.
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal