| Current Path : /home/j/u/v/juvelize/martine/tmp/install_61b0f5c54c150/back/helpers/global/ |
| Current File : /home/j/u/v/juvelize/martine/tmp/install_61b0f5c54c150/back/helpers/global/multibyte.php |
<?php
function acym_strtolower($string)
{
if (function_exists('mb_strtolower')) {
return mb_strtolower($string);
} else {
return strtolower($string);
}
}