Does PHP natively support multi-language support or will a costume function be necessary to achieve the following:
$vDate = fnDate();
This function returns a date string: Friday, February 2, 2007.
I want a function to return a Spanish version of the above text to something like this: Viernes, 02 de Febrero de 2007
Help?
webdev23