Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 smarty 2.6。我从数据库中获取数据(我没有访问权限,我只是获取数据)作为á字符串。
á
我需要将其更改为我正在制作á的文件中。.csv
á
.csv
我试过了{$string|html_entity_decode},但没有用。
{$string|html_entity_decode}
谁能帮我吗?
谢谢您的帮助。
修改了修改器并完成了它。
仅供参考,已更改的代码。
$char_set="ISO-8859-1"; if (function_exists('mb_split')) { return mb_convert_encoding($string , $char_set , 'HTML-ENTITIES'); } else { return html_entity_decode($string , ENT_NOQUOTES . $char_set); }
这行得通。