How would I change language of days of week in php? -
i looking simple way change language of days of week. use simple code below call out current day monday, tuesday, need in french, , i've tried setting locale etc not working me. think arrays job, again, not work limited knowledge.
<?php echo date('l'); ?>
you should use strftime()
function - http://php.net/manual/ru/function.strftime.php. date()
not locale dependent.
Comments
Post a Comment