2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:57:45 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-12-26 13:18:30 +00:00
|
|
|
<appendix xml:id="mbstring.constants" xmlns="http://docbook.org/ns/docbook">
|
2002-07-22 16:14:13 +00:00
|
|
|
&reftitle.constants;
|
|
|
|
&extension.constants;
|
|
|
|
<variablelist>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.mb-overload-mail">
|
2002-07-22 16:14:13 +00:00
|
|
|
<term>
|
|
|
|
<constant>MB_OVERLOAD_MAIL</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2002-07-22 16:14:13 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2021-01-28 18:54:40 +00:00
|
|
|
Removed as of PHP 8.0.0.
|
2002-07-22 16:14:13 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.mb-overload-string">
|
2002-07-22 16:14:13 +00:00
|
|
|
<term>
|
|
|
|
<constant>MB_OVERLOAD_STRING</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2002-07-22 16:14:13 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2021-01-28 18:54:40 +00:00
|
|
|
Removed as of PHP 8.0.0.
|
2002-07-22 16:14:13 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.mb-overload-regex">
|
2002-07-22 16:14:13 +00:00
|
|
|
<term>
|
|
|
|
<constant>MB_OVERLOAD_REGEX</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2002-07-22 16:14:13 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2021-01-28 18:54:40 +00:00
|
|
|
Removed as of PHP 8.0.0.
|
2007-05-24 13:40:51 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.mb-case-upper">
|
2007-05-24 13:40:51 +00:00
|
|
|
<term>
|
|
|
|
<constant>MB_CASE_UPPER</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2007-05-24 13:40:51 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2020-04-05 01:22:37 +00:00
|
|
|
Performs a full upper-case folding.
|
|
|
|
This may change the length of the string.
|
|
|
|
This is the mode used by mb_strtoupper().
|
2007-05-24 13:40:51 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.mb-case-lower">
|
2007-05-24 13:40:51 +00:00
|
|
|
<term>
|
|
|
|
<constant>MB_CASE_LOWER</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2007-05-24 13:40:51 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2020-04-05 01:22:37 +00:00
|
|
|
Performs a full lower-case folding.
|
|
|
|
This may change the length of the string.
|
|
|
|
This is the mode used by mb_strtolower().
|
2007-05-24 13:40:51 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.mb-case-title">
|
2007-05-24 13:40:51 +00:00
|
|
|
<term>
|
|
|
|
<constant>MB_CASE_TITLE</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2007-05-24 13:40:51 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2020-04-05 01:22:37 +00:00
|
|
|
Performs a full title-case conversion based on the Cased and CaseIgnorable
|
|
|
|
derived Unicode properties.
|
|
|
|
In particular this improves handling of quotes and apostrophes.
|
|
|
|
This may change the length of the string.
|
2002-07-22 16:14:13 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2018-09-29 11:51:48 +00:00
|
|
|
<varlistentry xml:id="constant.mb-case-fold">
|
|
|
|
<term>
|
|
|
|
<constant>MB_CASE_FOLD</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2018-09-29 11:51:48 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2020-04-05 01:22:37 +00:00
|
|
|
Performs a full case fold conversion which removes case distinctions
|
|
|
|
present in the string.
|
|
|
|
This is used for caseless matching.
|
|
|
|
This may change the length of the string.
|
2018-09-29 11:51:48 +00:00
|
|
|
Available since PHP 7.3.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry xml:id="constant.mb-case-lower-simple">
|
|
|
|
<term>
|
|
|
|
<constant>MB_CASE_LOWER_SIMPLE</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2018-09-29 11:51:48 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2020-04-05 01:22:37 +00:00
|
|
|
Performs a simple lower-case fold conversion.
|
|
|
|
This does not change the length of the string.
|
|
|
|
Available as of PHP 7.3.
|
2019-11-14 19:11:03 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry xml:id="constant.mb-case-upper-simple">
|
|
|
|
<term>
|
|
|
|
<constant>MB_CASE_UPPER_SIMPLE</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2019-11-14 19:11:03 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2020-04-05 01:22:37 +00:00
|
|
|
Performs simple upper-case fold conversion.
|
|
|
|
This does not change the length of the string.
|
|
|
|
Available as of PHP 7.3.
|
2018-09-29 11:51:48 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry xml:id="constant.mb-case-title-simple">
|
|
|
|
<term>
|
|
|
|
<constant>MB_CASE_TITLE_SIMPLE</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2018-09-29 11:51:48 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2020-04-05 01:22:37 +00:00
|
|
|
Performs simple title-case fold conversion.
|
|
|
|
This does not change the length of the string.
|
|
|
|
Available as of PHP 7.3.
|
2018-09-29 11:51:48 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry xml:id="constant.mb-case-fold-simple">
|
|
|
|
<term>
|
|
|
|
<constant>MB_CASE_FOLD_SIMPLE</constant>
|
2020-11-02 15:39:04 +00:00
|
|
|
(<type>int</type>)
|
2018-09-29 11:51:48 +00:00
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2020-04-05 01:22:37 +00:00
|
|
|
Performs a simple case fold conversion which removes case distinctions
|
|
|
|
present in the string.
|
|
|
|
This is used for caseless matching.
|
|
|
|
This does not change the length of the string.
|
2020-04-27 06:50:00 +00:00
|
|
|
Used by case-insensitive operations internally by the MBString extension.
|
2020-04-05 01:22:37 +00:00
|
|
|
Available as of PHP 7.3.
|
2018-09-29 11:51:48 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2019-11-29 15:56:00 +00:00
|
|
|
<varlistentry xml:id="constant.mb-oniguruma-version">
|
|
|
|
<term>
|
|
|
|
<constant>MB_ONIGURUMA_VERSION</constant>
|
|
|
|
(<type>string</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
The Oniguruma version, e.g. <literal>6.9.4</literal>.
|
2020-04-05 01:22:37 +00:00
|
|
|
Available as of PHP 7.4.
|
2019-11-29 15:56:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2002-07-22 16:14:13 +00:00
|
|
|
</variablelist>
|
2007-12-26 13:18:30 +00:00
|
|
|
</appendix>
|
2002-07-22 16:14:13 +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-07-22 16:14:13 +00:00
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
-->
|