mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
deprecated as of 5.3
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@281927 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
d17f5fddd7
commit
5521ff3a17
7 changed files with 65 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.ereg-replace">
|
||||
<refnamediv>
|
||||
<refname>ereg_replace</refname>
|
||||
|
@ -136,6 +136,12 @@ $text = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",
|
|||
|
||||
<refsect1 role="notes">
|
||||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
As of PHP 5.3.0 the Regex extension is deprecated, calling this function
|
||||
will issue an <literal>E_DEPRECATED</literal> notice.
|
||||
</para>
|
||||
</note>
|
||||
<tip>
|
||||
<para>
|
||||
<function>preg_replace</function>, which uses a Perl-compatible
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.18 $ -->
|
||||
<!-- $Revision: 1.19 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.ereg">
|
||||
<refnamediv>
|
||||
<refname>ereg</refname>
|
||||
|
@ -131,6 +131,12 @@ if (ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})", $date, $regs)) {
|
|||
|
||||
<refsect1 role="notes">
|
||||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
As of PHP 5.3.0 the Regex extension is deprecated, calling this function
|
||||
will issue an <literal>E_DEPRECATED</literal> notice.
|
||||
</para>
|
||||
</note>
|
||||
<note>
|
||||
<para>
|
||||
<function>preg_match</function>, which uses a Perl-compatible
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.eregi-replace">
|
||||
<refnamediv>
|
||||
<refname>eregi_replace</refname>
|
||||
|
@ -85,6 +85,16 @@ $body = eregi_replace($pattern, $replacement, $body);
|
|||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="notes">
|
||||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
As of PHP 5.3.0 the Regex extension is deprecated, calling this function
|
||||
will issue an <literal>E_DEPRECATED</literal> notice.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.eregi">
|
||||
<refnamediv>
|
||||
<refname>eregi</refname>
|
||||
|
@ -93,6 +93,16 @@ if (eregi('z', $string)) {
|
|||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="notes">
|
||||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
As of PHP 5.3.0 the Regex extension is deprecated, calling this function
|
||||
will issue an <literal>E_DEPRECATED</literal> notice.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.split">
|
||||
<refnamediv>
|
||||
<refname>split</refname>
|
||||
|
@ -123,6 +123,12 @@ echo "Month: $month; Day: $day; Year: $year<br />\n";
|
|||
|
||||
<refsect1 role="notes">
|
||||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
As of PHP 5.3.0 the Regex extension is deprecated, calling this function
|
||||
will issue an <literal>E_DEPRECATED</literal> notice.
|
||||
</para>
|
||||
</note>
|
||||
<tip>
|
||||
<para>
|
||||
<function>preg_split</function>, which uses a Perl-compatible regular
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.spliti">
|
||||
<refnamediv>
|
||||
<refname>spliti</refname>
|
||||
|
@ -118,6 +118,16 @@ Array
|
|||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="notes">
|
||||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
As of PHP 5.3.0 the Regex extension is deprecated, calling this function
|
||||
will issue an <literal>E_DEPRECATED</literal> notice.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.sql-regcase">
|
||||
<refnamediv>
|
||||
<refname>sql_regcase</refname>
|
||||
|
@ -70,6 +70,16 @@ echo sql_regcase("Foo - bar.");
|
|||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="notes">
|
||||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
As of PHP 5.3.0 the Regex extension is deprecated, calling this function
|
||||
will issue an <literal>E_DEPRECATED</literal> notice.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
|
Loading…
Reference in a new issue