savez
11/8/2016 - 11:06 AM

PHP using string UTF8

PHP using string UTF8

<?php
// Tells PHP that we will use UTF-8 string to the end of the script
mb_internal_encoding('UTF-8');

// Tell PHP that we will string UTF-8 to browser
mb_http_output('UTF-8');

?>