timwhitlock/php-unicode

This package is abandoned and no longer maintained. No replacement package was suggested.

Unicode utilities

1.0 2014-11-22 14:47 UTC

This package is auto-updated.

Last update: 2022-02-01 12:41:51 UTC


README

PHP 7 now has native Unicode support.

php-unicode

Utilities for working with Unicode characters in PHP.

The following prints a multi-byte tick mark from the code point U+2714.

   require('u.php');  
   header('Content-Type: text/html; charset=utf8', true );  
   echo u('\u2714');  

For further documentation, see the tests.