IntroductionZend_Locale is the Frameworks answer to the question, "How can the same application be used around the whole world?" Most people will say, "That's easy. Let's translate all our output to several languages." However, using simple translation tables to map phrases from one language to another is not sufficient. Different regions will have different conventions for first names, surnames, salutory titles, formatting of numbers, dates, times, currencies, etc.
We need » Localization
and complementary Internationalization. Both are often abbreviated to
L10n and I18n. Internationalization
refers more to support for use of systems, regardless of special needs unique to groups of
users related by language, region, number format conventions, financial conventions, time
and date conventions, etc. Localization involves adding explicit support to systems for
special needs of these unique groups, such as language translation, and support for local
customs or conventions for communicating plurals, dates, times, currencies, names, symbols,
sorting and ordering, etc. Tip
Zend_Locale and setLocale()» PHP's documentation states that setlocale() is not threadsave because it is maintained per process and not per thread. This means that, in multithreaded environments, you can have the problem that the locale changes while the script never has changed the locale itself. This can lead to unexpected behaviour when you use setlocale() in your scripts. When you are using Zend_Locale you will not have this limitations, because Zend_Locale is not related to or coupled with PHP's setlocale(). What is LocalizationLocalization means that an application (or homepage) can be used from different users which speak different languages. But as you already have expected Localization means more than only translating strings. It includes
What is a Locale?
Each computer user makes use of Locales, even when they don't know it. Applications
lacking localization support, normally have implicit support for one particular locale
(the locale of the author). When a class or function makes use of localization, we say
it is A locale string or object identifying a supported locale gives Zend_Locale and its subclasses access to information about the language and region expected by the user. Correct formatting, normalization, and conversions are made based on this information. How are Locales Represented?
Locale identifiers consist of information about the user's language and
preferred/primary geographic region (e.g. state or province of home or workplace). The
locale identifier strings used in Zend Framework are internationally defined standard
abbreviations of language and region, written as
A user from USA would expect the language Example #1 Choosing a specific locale
A German user in America might expect the language Beware of historical changes, as Zend Framework components do not know about or attempt to track the numerous timezone changes made over many years by many regions. For example, » we can see a historical list showing dozens of changes made by governments to when and if a particular region observes Daylight Savings Time, and even which timezone a particular geographic area belongs. Thus, when performing date math, the math performed by Zend Framework components will not adjust for these changes, but instead will give the correct time for the timezone using current, modern rules for DST and timezone assignment for geographic regions. Selecting the Right Locale
For most situations, Example #2 Automatically selecting a locale
The search algorithm used by Zend_Locale for automatic selection of a locale uses three sources of information:
Usage of automatic LocalesZend_Locale provides three additional locales. These locales do not belong to any language or region. They are "automatic" locales which means that they have the same effect as the method getDefault() but without the negative effects like creating an instance. These "automatic" locales can be used anywhere, where also a standard locale and also the definition of a locale, its string representation, can be used. This offers simplicity for situations like working with locales which are provided by a browser. There are three locales which have a slightly different behaviour:
Example #3 Using automatic locales
Using a default LocaleIn some environments it is not possible to detect a locale automatically. You can expect this behaviour when you get an request from command line or the requesting browser has no language tag set and additionally your server has the default locale 'C' set or another proprietary locale. In such cases Zend_Locale will normally throw an exception with a message that the automatic detection of any locale was not successful. You have two options to handle such a situation. Either through setting a new locale per hand, or defining a default locale. Example #4 Handling locale exceptions
But this has one big negative effect. You will have to set your locale object within every class using Zend_Locale. This could become very unhandy if you are using multiple classes. Since Zend Framework Release 1.5 there is a much better way to handle this. You can set a default locale which the static setDefault() method. Of course, every unknown or not fully qualified locale will also throw an exception. setDefault() should be the first call before you initiate any class using Zend_Locale. See the following example for details: Example #5 Setting a default locale
In the case that no locale can be detected, automatically the locale de will be used. Otherwise, the detected locale will be used. ZF Locale-Aware ClassesIn the Zend Framework, locale-aware classes rely on Zend_Locale to automatically select a locale, as explained above. For example, in a Zend Framework web application, constructing a date using Zend_Date without specifying a locale results in an object with a locale based on information provided by the current user's web browser. Example #6 Dates default to correct locale of web users
To override this default behavior, and force locale-aware Zend Framework components to use specific locales, regardless of the origin of your website visitors, explicitly specify a locale as the third argument to the constructor. Example #7 Overriding default locale selection
If you know many objects should all use the same default locale, explicitly specify the default locale to avoid the overhead of each object determining the default locale. Example #8 Performance optimization when using a default locale
Application wide localeZend Framework allows the usage of an application wide locale. You simply set an instance of Zend_Locale to the registry with the key 'Zend_Locale'. Then this instance will be used within all locale aware classes of Zend Framework. This way you set one locale within your registry and then you can forget about setting it again. It will automatically be used in all other classes. See the below example for the right usage: Example #9 Usage of an application wide locale
Zend_Locale_Format::setOptions(array $options)The 'precision' option of a value is used to truncate or stretch extra digits. A value of '-1' disables modification of the number of digits in the fractional part of the value. The 'locale' option helps when parsing numbers and dates using separators and month names. The date format 'format_type' option selects between CLDR/ISO date format specifier tokens and PHP's date() tokens. The 'fix_date' option enables or disables heuristics that attempt to correct invalid dates. The 'number_format' option specifies a default number format for use with toNumber() (see Number localization). The 'date_format' option can be used to specify a default date format string, but beware of using getDate(), checkdateFormat() and getTime() after using setOptions() with a 'date_format'. To use these four methods with the default date format for a locale, use array('date_format' => null, 'locale' => $locale) for their options. Example #10 Dates default to correct locale of web users
For working with the standard definitions of a locale the option
Zend_Locale_Format::STANDARD can be used. Setting the option
Zend_Locale_Format::STANDARD for Example #11 Using STANDARD definitions for setOptions()
Speed up Zend_Locale and its subclasses
Zend_Locale and its subclasses can be speeded up by the usage of
Zend_Cache. Use the static method
Zend_Locale::setCache($cache) if you are using
Zend_Locale. Zend_Locale_Format can be
speeded up the using the option When no cache is set, then Zend_Locale will automatically set a cache itself. Sometimes it is wished to prevent that a cache is set, even if this degrades performance. In this case the static disableCache(true) method should be used. It does not only disable the actual set cache, without erasing it, but also prevents that a cache is automatically generated when no cache is set.
|