timwhitlock / php-unicode
Unicode utilities
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
pkg:composer/timwhitlock/php-unicode
Requires
- php: >=5.3.0
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.