Posted by Mateusz Markowski on 10/13/06 14:36
Rik napisal(a):
> Rik wrote:
> > is there a _way_ in PHP to get the available locales without shellacces?
>
> :-)
>
> Grtz,
> --
> Rik Wasmus
Yes, there is. You can use setlocale() and as second argument pass 0.
Then setlocale() will return current setting. For example:
echo setlocale(LC_TIME, 0);
[Back to original message]
|