Posted by Ruben van Engelenburg on 12/18/18 11:51
ngocviet wrote:
> I have a text like this: "Thuyền Và Biển"
> How to convert it to: "Thuyền Và Biển"
> Please help!
>
This is the same question that McHenry asked today.
The answer is simple: use html_entity_decode():
<?php
echo html_entity_decode('Thuyền Và Biển');
?>
HTH.
Ruben.
[Back to original message]
|