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.setdefault">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>Locale::setDefault</refname>
|
|
|
|
<refname>locale_set_default</refname>
|
2018-01-25 15:24:28 +00:00
|
|
|
<refpurpose>Sets the default runtime locale</refpurpose>
|
2007-12-26 20:43:37 +00:00
|
|
|
</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>
|
2008-11-04 13:27:54 +00:00
|
|
|
<type>bool</type>
|
2008-01-27 19:48:18 +00:00
|
|
|
<methodname>Locale::setDefault</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>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>
|
2008-11-04 13:27:54 +00:00
|
|
|
<type>bool</type>
|
2007-12-26 20:43:37 +00:00
|
|
|
<methodname>locale_set_default</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>locale</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
Sets the default runtime locale to $locale. This changes the value of INTL
|
|
|
|
global 'default_locale' locale identifier. UAX #35 extensions are accepted.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>locale</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2016-03-31 18:48:08 +00:00
|
|
|
Is a BCP 47 compliant language tag.
|
2007-12-26 20:43:37 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
&return.success;
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<example>
|
|
|
|
<title><function>locale_set_default</function> example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
locale_set_default('de-DE');
|
|
|
|
echo locale_get_default();
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
<example>
|
|
|
|
<title>OO example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
Locale::setDefault('de-DE');
|
|
|
|
echo Locale::getDefault();
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
&example.outputs;
|
|
|
|
<screen>
|
|
|
|
<![CDATA[
|
|
|
|
de-DE
|
|
|
|
]]>
|
|
|
|
</screen>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>locale_get_default</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
|
|
|
|
-->
|