2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:07:53 +00:00
|
|
|
<!-- $Revision$ -->
|
2020-11-17 11:41:44 +00:00
|
|
|
<refentry xml:id="function.bind-textdomain-codeset" xmlns="http://docbook.org/ns/docbook">
|
2007-01-15 02:06:20 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>bind_textdomain_codeset</refname>
|
2021-01-25 15:13:25 +00:00
|
|
|
<refpurpose>Specify or get the character encoding in which the messages from the DOMAIN message catalog will be returned</refpurpose>
|
2007-01-15 02:06:20 +00:00
|
|
|
</refnamediv>
|
2007-01-15 06:50:03 +00:00
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2007-01-15 02:06:20 +00:00
|
|
|
<methodsynopsis>
|
2020-11-17 11:41:44 +00:00
|
|
|
<type class="union"><type>string</type><type>false</type></type><methodname>bind_textdomain_codeset</methodname>
|
2007-01-15 02:06:20 +00:00
|
|
|
<methodparam><type>string</type><parameter>domain</parameter></methodparam>
|
2021-01-25 15:13:25 +00:00
|
|
|
<methodparam><type class="union"><type>string</type><type>null</type></type><parameter>codeset</parameter></methodparam>
|
2007-01-15 02:06:20 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2021-01-25 15:13:25 +00:00
|
|
|
<function>bind_textdomain_codeset</function> allows to set or get the
|
|
|
|
encoding in which messages from <parameter>domain</parameter> will be returned by
|
2007-01-15 02:06:20 +00:00
|
|
|
<function>gettext</function> and similar functions.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-01-15 06:50:03 +00:00
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>domain</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2021-01-25 15:13:25 +00:00
|
|
|
The domain.
|
2007-01-15 06:50:03 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>codeset</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2021-01-25 15:13:25 +00:00
|
|
|
The code set.
|
|
|
|
If &null;, the currently set encoding is returned.
|
2007-01-15 06:50:03 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
A <type>string</type> on success.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2021-01-25 15:13:25 +00:00
|
|
|
|
|
|
|
<refsect1 role="changelog">
|
|
|
|
&reftitle.changelog;
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>&Version;</entry>
|
|
|
|
<entry>&Description;</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>8.0.3</entry>
|
|
|
|
<entry>
|
|
|
|
<parameter>codeset</parameter> is nullable now.
|
|
|
|
Previously, it was not possible to retrieve the currently set encoding.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</refsect1>
|
|
|
|
|
2021-02-08 09:26:46 +00:00
|
|
|
<refsect1 role="notes">
|
|
|
|
&reftitle.notes;
|
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
The <function>bind_textdomain_codeset</function> information is maintained per process,
|
|
|
|
not per thread.
|
|
|
|
</para>
|
|
|
|
</note>
|
|
|
|
</refsect1>
|
2007-01-15 02:06:20 +00:00
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- 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"
|
2002-04-15 00:12:54 +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
|
|
|
|
-->
|