is there way change return value language of php function ? ( server side, not depending client machine )
<?php $today = getdate(); print_r($today); ?>
return
array ( [seconds] => 40 [minutes] => 58 [hours] => 21 [mday] => 17 [wday] => 2 [mon] => 6 [year] => 2003 [yday] => 167 [weekday] => tuesday [month] => june [0] => 1055901520 )
i wanted change "tuesday" "mardi" ( in french ) or other language..
i didn't find var "preferred language"..
i put <html lang='fr'>
" between <form>
, <head>
, doesn't change. guess have put in php.ini (or somewhere else).
if solution ( perhaps give me exact line put in , where) , so, have second question: how manage different websites different preferred language because solution affect main configuration ? have 1 vps, several domain, in english, in french...
thanks.
Comments
Post a Comment