Home > Backend Development > PHP Problem > How to use php implode function?

How to use php implode function?

藏色散人
Release: 2023-02-22 22:48:01
Original
3929 people have browsed it

php The implode function is used to return a string composed of array elements. Its syntax is implode(separator,array). The parameter array is required and refers to the array to be combined into a string.

How to use php implode function?

#How to use the php implode function?

Definition and usage

implode() function returns a string composed of array elements.

Note: The implode() function accepts two parameter orders. However, due to historical reasons, explode() does not work. You must ensure that the separator parameter comes before the string parameter.

Note: The separator parameter of the implode() function is optional. However, for backward compatibility, it is recommended that you use two parameters.

Note: This function is binary safe.

Syntax

implode(separator,array)
Copy after login

Parameters

separator Optional. Specifies what is placed between array elements. Default is "" (empty string).

array Required. Arrays to be combined into strings.

Return value: Returns a string composed of array elements.

PHP Version: 4

Change Log: In PHP 4.3.0, the separator parameter becomes optional.

Example 1

Separate array elements with different characters:

<?php
$arr = array(&#39;Hello&#39;,&#39;World!&#39;,&#39;I&#39;,&#39;love&#39;,&#39;Shanghai!&#39;);
echo implode(" ",$arr)."<br>";
echo implode("+",$arr)."<br>";
echo implode("-",$arr)."<br>";
echo implode("X",$arr);
?>
Copy after login

Output:

Hello World! I love Shanghai!
Hello+World!+I+love+Shanghai!
Hello-World!-I-love-Shanghai!
HelloXWorld!XIXloveXShanghai!
Copy after login

Example 2

Combine array elements into strings:

<?php
$arr = array(&#39;Hello&#39;,&#39;World!&#39;,&#39;I&#39;,&#39;love&#39;,&#39;Shanghai!&#39;);
echo implode(" ",$arr);
?>
Copy after login

Output:

Hello World! I love Shanghai!
Copy after login

The above is the detailed content of How to use php implode function?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template