2007-12-07 01:14:26 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:57:45 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-12-07 01:14:26 +00:00
|
|
|
<refentry xml:id="function.mb-check-encoding" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2006-09-23 06:34:37 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>mb_check_encoding</refname>
|
2019-09-30 07:45:18 +00:00
|
|
|
<refpurpose>Check if strings are valid for the specified encoding</refpurpose>
|
2006-09-23 06:34:37 +00:00
|
|
|
</refnamediv>
|
2007-12-07 01:14:26 +00:00
|
|
|
|
2006-09-23 06:34:37 +00:00
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>bool</type><methodname>mb_check_encoding</methodname>
|
2020-12-12 16:32:35 +00:00
|
|
|
<methodparam choice="opt"><type class="union"><type>array</type><type>string</type><type>null</type></type><parameter>value</parameter><initializer>&null;</initializer></methodparam>
|
|
|
|
<methodparam choice="opt"><type class="union"><type>string</type><type>null</type></type><parameter>encoding</parameter><initializer>&null;</initializer></methodparam>
|
2006-09-23 06:34:37 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2007-12-07 01:14:26 +00:00
|
|
|
Checks if the specified byte stream is valid for the specified encoding.
|
2020-12-12 16:32:35 +00:00
|
|
|
If <parameter>value</parameter> is of type &array;, all keys and values are
|
2019-09-30 07:45:18 +00:00
|
|
|
validated recursively.
|
2006-09-23 06:34:37 +00:00
|
|
|
It is useful to prevent so-called "Invalid Encoding Attack".
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-12-07 01:14:26 +00:00
|
|
|
|
2006-09-23 06:34:37 +00:00
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
2020-12-12 16:32:35 +00:00
|
|
|
<term><parameter>value</parameter></term>
|
2006-09-23 06:34:37 +00:00
|
|
|
<listitem>
|
|
|
|
<para>
|
2019-09-30 07:45:18 +00:00
|
|
|
The byte stream or &array; to check. If it is omitted, this function checks
|
2015-12-19 23:21:37 +00:00
|
|
|
all the input from the beginning of the request.
|
2006-09-23 06:34:37 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>encoding</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2007-12-07 01:14:26 +00:00
|
|
|
The expected encoding.
|
2006-09-23 06:34:37 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-12-07 01:14:26 +00:00
|
|
|
|
2006-09-23 06:34:37 +00:00
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
&return.success;
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2019-09-30 07:45:18 +00:00
|
|
|
<refsect1 role="changelog">
|
|
|
|
&reftitle.changelog;
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>&Version;</entry>
|
|
|
|
<entry>&Description;</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2020-12-12 16:32:35 +00:00
|
|
|
<row>
|
|
|
|
<entry>8.0.0</entry>
|
|
|
|
<entry>
|
|
|
|
<parameter>value</parameter> and <parameter>encoding</parameter> are nullable now.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2019-09-30 07:45:18 +00:00
|
|
|
<row>
|
|
|
|
<entry>7.2.0</entry>
|
|
|
|
<entry>
|
2020-12-12 16:32:35 +00:00
|
|
|
This function now also accepts an &array; as <parameter>value</parameter>.
|
2019-09-30 07:45:18 +00:00
|
|
|
Formerly, only &string;s have been supported.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</refsect1>
|
|
|
|
|
2006-09-23 06:34:37 +00:00
|
|
|
</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"
|
2006-09-23 06:34: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
|
|
|
|
-->
|