阿鼻大陆
2017-06-27 23:50
[8]ErrorExceptionin Mysql.php line 34
Array to string conversion
/** * 解析pdo连接的dsn信息 * @access protected * @param array $config 连接信息 * @return string */ protected function parseDsn($config) { $dsn = 'mysql:dbname=' . $config['database'] . ';host=' . $config['hostname']; if (!empty($config['hostport'])) { $dsn .= ';port=' . $config['hostport']; } elseif (!empty($config['socket'])) { $dsn .= ';unix_socket=' . $config['socket']; } if (!empty($config['charset'])) { $dsn .= ';charset=' . $config['charset']; } return $dsn;
明明和视频老师代码一样的...
你可以截图下你的报错信息
报错页面是什么样子 理论上没有任何问题
另外记得 开 pdo
我的密码和表名都没错啊,后台数据库也可以连上
补图片。
检查数据库配置以及你的本地数据库是否启动;
快速入门ThinkPHP 5.0 --模型篇
27111 学习 · 100 问题
相似问题