A new locale can be set with the function setLocale(). This
function takes a locale string as parameter. If no locale is given, a locale is
automatically selected.
Example 535. setLocale
<?php
$locale = new Zend_Locale();
// Actual locale
print $locale->toString();
// new locale
$locale->setLocale('aa_DJ');
print $locale->toString();




