• <bdo id='q2XKt'></bdo><ul id='q2XKt'></ul>

    1. <small id='q2XKt'></small><noframes id='q2XKt'>

      <i id='q2XKt'><tr id='q2XKt'><dt id='q2XKt'><q id='q2XKt'><span id='q2XKt'><b id='q2XKt'><form id='q2XKt'><ins id='q2XKt'></ins><ul id='q2XKt'></ul><sub id='q2XKt'></sub></form><legend id='q2XKt'></legend><bdo id='q2XKt'><pre id='q2XKt'><center id='q2XKt'></center></pre></bdo></b><th id='q2XKt'></th></span></q></dt></tr></i><div id='q2XKt'><tfoot id='q2XKt'></tfoot><dl id='q2XKt'><fieldset id='q2XKt'></fieldset></dl></div>
    2. <tfoot id='q2XKt'></tfoot>

        <legend id='q2XKt'><style id='q2XKt'><dir id='q2XKt'><q id='q2XKt'></q></dir></style></legend>
      1. Laravel UTF-8 转数据库

        时间:2023-09-22

          1. <small id='WMS3G'></small><noframes id='WMS3G'>

                  <tbody id='WMS3G'></tbody>
                • <bdo id='WMS3G'></bdo><ul id='WMS3G'></ul>
                  <tfoot id='WMS3G'></tfoot>
                  <legend id='WMS3G'><style id='WMS3G'><dir id='WMS3G'><q id='WMS3G'></q></dir></style></legend>

                  <i id='WMS3G'><tr id='WMS3G'><dt id='WMS3G'><q id='WMS3G'><span id='WMS3G'><b id='WMS3G'><form id='WMS3G'><ins id='WMS3G'></ins><ul id='WMS3G'></ul><sub id='WMS3G'></sub></form><legend id='WMS3G'></legend><bdo id='WMS3G'><pre id='WMS3G'><center id='WMS3G'></center></pre></bdo></b><th id='WMS3G'></th></span></q></dt></tr></i><div id='WMS3G'><tfoot id='WMS3G'></tfoot><dl id='WMS3G'><fieldset id='WMS3G'></fieldset></dl></div>
                  本文介绍了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 转数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Laravel 简单月份选择 下一篇:Laravel 获取与其属性同名的 Eloquent 关系

                  相关文章

                  最新文章

                  1. <i id='pzQJ8'><tr id='pzQJ8'><dt id='pzQJ8'><q id='pzQJ8'><span id='pzQJ8'><b id='pzQJ8'><form id='pzQJ8'><ins id='pzQJ8'></ins><ul id='pzQJ8'></ul><sub id='pzQJ8'></sub></form><legend id='pzQJ8'></legend><bdo id='pzQJ8'><pre id='pzQJ8'><center id='pzQJ8'></center></pre></bdo></b><th id='pzQJ8'></th></span></q></dt></tr></i><div id='pzQJ8'><tfoot id='pzQJ8'></tfoot><dl id='pzQJ8'><fieldset id='pzQJ8'></fieldset></dl></div>
                      <bdo id='pzQJ8'></bdo><ul id='pzQJ8'></ul>
                    <tfoot id='pzQJ8'></tfoot>
                  2. <small id='pzQJ8'></small><noframes id='pzQJ8'>

                  3. <legend id='pzQJ8'><style id='pzQJ8'><dir id='pzQJ8'><q id='pzQJ8'></q></dir></style></legend>