我有数据库表
----------
id currency currency_symbol
1 euro `€`
2 yen `¥`
----------
当我从php获取它时效果很好。但是当我通过javascript在HTML中重新标记货币符号时,它会打印€
而不是€
完全符号。
答案 0 :(得分:0)
使用html_entity_decode
功能。它解码html实体。
ex: echo html_entity_decode('€') //outputs '€' symbol