douyudouchao6779 2019-07-18 07:25
浏览 46

流明数据库连接字符编码

I have a problem with Lumen connection character encoding

I tried everything and I figured that the connection is the problem

In a lumen model, I created a new mysqli connection like this

$sql = "SELECT summary FROM exp_fb_assessments WHERE aid=8192";
$result = $conn->query($sql);
while($row = $result->fetch_assoc()) {
    echo $row["summary"] . "<br>";
}

And right after that, I do this to see the output of the default DB Lumen connection

$results = DB::select("SELECT summary FROM exp_fb_assessments WHERE aid=8192");
echo $results[0]->summary;

As you can see both are exactly the same but I get different results

Test 例如:发表 这篇论文 什么时候 是 的 
这篇论文是什么时候发表的? 
Test 例如:å‘表 这篇论文 什么时候 是 çš„ 
这篇论文是什么时候å‘表的?

How can I fix this or at least debug and find where the problem with the connection is.

NOTE: I tried setting these in my .env file:

DB_CHARSET=utf8
DB_CHARACTERSET=ut8
DB_COLLATION=utf8_unicode_ci

still not working.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 在hololens1上运行unity项目只有空窗口
    • ¥25 TABLEAU PREP无法打开
    • ¥15 关于#c语言#的问题:求完整代码条件好说
    • ¥15 (需要远程,AI不回)VB6二进制文件转换成功,但是C#转换总是失败
    • ¥15 关于#matlab#的问题:有没有什么其他办法能够保证不退出进程(相关搜索:matlab调用)
    • ¥15 依据报错在原代吗格式的基础上解决问题
    • ¥15 在虚拟机中安装flash code
    • ¥15 单片机stm32f10x编写光敏电阻调节3.3伏大功率灯亮度(光强越大灯越暗,白天正常光强灯不亮,使用ADC,PWM等模块)望各位找一下错误或者提供一个可实现功能的代码
    • ¥20 verilog状态机方法流水灯
    • ¥15 pandas代码实现不了意图