Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
339 views
in Technique[技术] by (71.8m points)

php - Laravel 5 charset not working correctly on the views. But it working well when I dump it from controller

I'm facing a charset problem here. I'm developing an app that uses a sql server database. The database was not created for this app, it exists before it and works very well. I can't change anything on the database because its too large and its used by many other apps.
I've been finished the auth of my laravel 5 app, so I'll create a view and show in this view the name of logged user. The name is: ADMINISTRADOR DA ACENTUA??O. It use some special characters.
In my views:

{!!Auth::user()->name!!} 

it shows:

ADMINISTRADOR DA ACENTUA??O

But in my controller, before I return the view, I did:

die(Auth::user()->name);

and it shows me:

ADMINISTRADOR DA ACENTUA??O

I try now do it in my view file:

    {!!Auth::user()->name!!}
<?php die();

And this works fine. It shows me:

ADMINISTRADOR DA ACENTUA??O

It makes me believe the error occours for something laravel does after the views are parsed.

I don't know why it works well when I die the user name on the controller, but not works when I echo its name on the view.

May anyone help me plz?

PS:

  • My view file is using utf8 charset
  • I tried to echo with and without html tags and charset meta. The problem occours on both cases
  • I tried to delete my view file and create a new one with utf8 charset. It doesn't work.
  • I tried to use <?php echo Auth::user()->name; ?> instead blade tags. It doesn't work.
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I solved this issue using this aswer. I've just went in my AppServiceProvider and put into boot method:

Blade::setEchoFormat('e(utf8_encode(%s))');

I don't know if this is the correct way to do it, but it works for me.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...