Laravel UTF-8 To Database(Laravel UTF-8 转数据库)
问题描述
我正在使用 Eloquent 将一个新人保存()到我的数据库中.人名包含一个特殊字符 é 并且它不是提交.这是我的步骤和结果.
I'm using Eloquent to save() a new person into my database. The persons name contains a special character é and it's not submitting. Here are my steps and the results.
echo Input::get('firstname'); // Miguél
这给了我这个
当我开始使用 eloquent 时,会发生以下情况.
When i start using eloquent the following happens.
$person = new Person();
echo $person->firstname = Input::get('firstname');
结果如下
知道可能出了什么问题吗?这些是我在 laravel 中的配置设置
Any idea what might be going wrong? These are my config settings in laravel
这是我在 phpmyadmin 中的数据库
And this is my database in phpmyadmin
谢谢
推荐答案
我认为它与数据库没有任何共同之处.
I don't think it has anything common with database.
使用时:
$person = new Person();
echo $person->firstname = Input::get('firstname');
你在这里不使用数据库.您只需将属性分配给 Person 类(可能使用 Eloquent),但您没有将任何内容放入数据库并从数据库中获取任何内容,因此编码问题不可能与数据库本身有任何共同之处
you don't use database in here. You just assign properties to Person class (that probably uses Eloquent) but you don't put anything into database and get anything from database so it's not possible that the encoding problem has anything in common with database itself
我认为潜在的问题 - 您已经在 Person
类中为 firstname
属性定义了mutator,因为它是小写的(当你从 Input 中得到它时,它是大写的) 所以你可能使用了一些像 strtolower
这样的函数,你应该使用 mb_strtolower
来转换 UTF-8 字符串而不会有问题.
Potential problem in my opinion - you have defined mutator in Person
class for firstname
attribute because you have it in lowercase (when you get it from Input it's with capital letter) so you probably use some function like strtolower
and you should use mb_strtolower
to convert UTF-8 strings without a problem.
这篇关于Laravel UTF-8 转数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel UTF-8 转数据库
基础教程推荐
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01