# URLify for PHP A PHP port of [URLify.js](https://github.com/django/django/blob/master/django/contrib/admin/static/admin/js/urlify.js) from the Django project. Handles symbols from Latin languages, Greek, Turkish, Russian, Ukrainian, Czech, Polish, and Latvian. Symbols it cannot transliterate it will simply omit. * Author: [jbroadway](http://github.com/jbroadway) * License: MIT ## Usage: To generate slugs for URLs: ```php ``` To simply transliterate characters: ```php ``` To extend the character list: ```php '?', '®' => '(r)', '¼' => '1/4', '¼' => '1/2', '¾' => '3/4', '¶' => 'P' )); echo URLify::downcode ('¿ ® ¼ ¼ ¾ ¶'); // "? (r) 1/2 1/2 3/4 P" ?> ``` To extend the list of words to remove: ```php ```