PHP 8.4.24 Released!

Voting

: one plus seven?
(Example: nine)

The Note You're Voting On

berserk220 at mail dot ru
18 years ago
So, as iconv() does not always work correctly, in most cases, much easier to use htmlentities(). 
Example: <?php $content=htmlentities(file_get_contents("incoming.txt"), ENT_QUOTES, "Windows-1252");  file_put_contents("outbound.txt", html_entity_decode($content, ENT_QUOTES , "utf-8")); ?>

<< Back to user notes page

To Top