标签: php encoding
我的文本中包含ord元素,例如:
Ya marcу medianoche
是什么将该文本转换为正确的文本?
答案 0 :(得分:4)
因为它不仅仅是一个“ord”,而是一个写为utf-codepoint的html实体,你可以使用html_entity_decode()
html_entity_decode()
var_dump(html_entity_decode("Ya marcу medianoche", ENT_COMPAT, "UTF-8"));