2007-12-26 20:43:37 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:47:57 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-12-26 20:43:37 +00:00
|
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="locale.getdisplaylanguage">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>Locale::getDisplayLanguage</refname>
|
|
|
|
<refname>locale_get_display_language</refname>
|
|
|
|
<refpurpose>Returns an appropriately localized display name for language of the inputlocale</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
|
|
|
<para>
|
2012-01-11 06:50:17 +00:00
|
|
|
&style.oop;
|
2007-12-26 20:43:37 +00:00
|
|
|
</para>
|
2008-01-27 19:48:18 +00:00
|
|
|
<methodsynopsis>
|
2013-06-18 05:36:30 +00:00
|
|
|
<modifier>public</modifier>
|
2008-01-27 19:48:18 +00:00
|
|
|
<modifier>static</modifier>
|
|
|
|
<type>string</type>
|
|
|
|
<methodname>Locale::getDisplayLanguage</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>locale</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>in_locale</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
2007-12-26 20:43:37 +00:00
|
|
|
<para>
|
2012-01-11 06:50:17 +00:00
|
|
|
&style.procedural;
|
2007-12-26 20:43:37 +00:00
|
|
|
</para>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type>
|
|
|
|
<methodname>locale_get_display_language</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>locale</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>in_locale</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
Returns an appropriately localized display name for language of the input
|
|
|
|
locale. If is &null; then the default locale is used.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>locale</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The locale to return a display language for
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>in_locale</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Optional format locale to use to display the language name
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
display name of the language for the $locale in the format appropriate for
|
|
|
|
$in_locale.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<example>
|
|
|
|
<title><function>locale_get_display_language</function> example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
echo locale_get_display_language('sl-Latn-IT-nedis', 'en');
|
|
|
|
echo ";\n";
|
|
|
|
echo locale_get_display_language('sl-Latn-IT-nedis', 'fr');
|
|
|
|
echo ";\n";
|
|
|
|
echo locale_get_display_language('sl-Latn-IT-nedis', 'de');
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
<example>
|
|
|
|
<title>OO example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
echo Locale::getDisplayLanguage('sl-Latn-IT-nedis', 'en');
|
|
|
|
echo ";\n";
|
|
|
|
echo Locale::getDisplayLanguage('sl-Latn-IT-nedis', 'fr');
|
|
|
|
echo ";\n";
|
|
|
|
echo Locale::getDisplayLanguage('sl-Latn-IT-nedis', 'de');
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
&example.outputs;
|
|
|
|
<screen>
|
|
|
|
<![CDATA[
|
|
|
|
Slovenian;
|
|
|
|
slov\xc3\xa8ne;
|
|
|
|
Slowenisch
|
|
|
|
]]>
|
|
|
|
</screen>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>locale_get_display_name</function></member>
|
|
|
|
<member><function>locale_get_display_script</function></member>
|
|
|
|
<member><function>locale_get_display_region</function></member>
|
|
|
|
<member><function>locale_get_display_variant</function></member>
|
|
|
|
</simplelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2007-12-26 20:43:37 +00:00
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|