mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
implode-fix
This commit is contained in:
parent
4f04bd50ed
commit
a810fcc1ff
1 changed files with 7 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.implode">
|
||||
<refentry xml:id="function.implode" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>implode</refname>
|
||||
<refpurpose>Join array elements with a string</refpurpose>
|
||||
|
@ -17,17 +17,15 @@
|
|||
<type>string</type><methodname>implode</methodname>
|
||||
<methodparam><type>array</type><parameter>pieces</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<simpara>Legacy signature (deprecated as of PHP 7.4.0, removed as of PHP 8.0.0):</simpara>
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>implode</methodname>
|
||||
<methodparam><type>array</type><parameter>pieces</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>glue</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Join array elements with a <parameter>glue</parameter> string.
|
||||
</para>
|
||||
<note>
|
||||
<para>
|
||||
<function>implode</function> can, for historical reasons, accept
|
||||
its parameters in either order. For consistency with
|
||||
<function>explode</function>, however, it is <emphasis>deprecated</emphasis> not
|
||||
to use the documented order of arguments.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
|
|
Loading…
Reference in a new issue