标签:phalcon乱码
昨天晚上用PHP写程序的时候遇到一个特别纠结的问题,页面,mysql 字符集都校对成utf8了,但是只要通过Phalcon程序往数据库里跑数据,中文就都会变成乱码,今天在phalcon php群里@问路才不会迷路 朋友的帮助下完美解决这个问题,解决方法如下:在引导程序设置数据库连接处 加入
$di -> set(‘db‘,function() use($config)) { return new \Phalcon\Db\Adapter\Pdo\Mysql(array( ‘host‘ => $config -> database -> host, ‘username‘=> $config -> database -> username, ‘password‘=> $config -> database -> password, ‘dbname‘ => $config -> database -> name, //加入以下代码 完美解决Phalcon插入数据乱码问题 ‘charset‘ => ‘utf-8‘ )); }
本文出自 “天道酬勤” 博客,请务必保留此出处http://ivendor.blog.51cto.com/8613733/1545022
标签:phalcon乱码
原文地址:http://ivendor.blog.51cto.com/8613733/1545022