For a PHP-MySQL application, what is the best way to handle internationalization? Do I save the data in MySQL or flat files? Is there any standard library that comes with PHP or do I need to write my own functions?
For a PHP-MySQL application, what is the best way to handle internationalization? Do I
Share
Use the new
Internationalizationmodule if you’re using PHP 5.3. It uses theICUlibrary that’s compatible with C/C++ and Java.gettext()is on its way to becoming legacy code.