Voting

: min(three, seven)?
(Example: nine)

The Note You're Voting On

berserk220 at mail dot ru
16 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