Jump to content

setlocale problem


nita

Recommended Posts

Hi

 

What i'm trying to do is to have posibility to display day names in other languages.

Code below works perfect with english, but dosent seems to work with dutch or french for instance. Still displays in english.

 

        setlocale(LC_TIME, 'NL_nl');
$datestamp=$_POST['datestamp'];

echo "$datestamp";

echo strftime('%A %e %B %Y ', strtotime($datestamp));

$weekday = date('l', strtotime($datestamp)); 
echo $weekday;

 

Missing something here ?? Can someone help me with it?

 

Thank you very much in advance

Link to comment
https://forums.phpfreaks.com/topic/254999-setlocale-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.