我在some_file.php
中的lang文件夹中使用了这段代码return [
'some-text' => 'i\'d like to fix it! it doesn\'t work even if I change the single quotes to double one.',
];
请注意,返回的值是正确的,但是当我对值进行json_encode并将其打印在带有{!! json_encode('some_file.some_text') !!}
的输入隐藏标记内时,它会在firebug中向我发送错误(我不记得代码完全正确且我没有现在访问代码)但它的错误中有间歇性的json。
答案 0 :(得分:1)
在双引号内试试
return [
'some-text' => "i\'d like to fix it! it doesn\'t work even if I change
the single quotes to double one.",
];