Voting

: max(zero, four)?
(Example: nine)

The Note You're Voting On

admin at iecw dot net
11 years ago
If you want to normalize a filename on Mac OS X, because it is in UTF-8 NFD and you need UTF-8 NFC
(See: http://en.wikipedia.org/wiki/Unicode_equivalence#Combining_and_precomposed_characters)
you may use:
<?php
$filename_nfc
= iconv("UTF-8-MAC", "UTF-8", $filename_nfd);
?>

<< Back to user notes page

To Top