How to use php join

angryTom
Release: 2023-04-07 10:02:01
Original
3339 people have browsed it

How to use php join

PHP join() function

Combines array elements into a string:

Copy after login

Definition and usage

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

 join() function is an alias of implode() function.

Note: The join() 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 join() function is optional. However, for backward compatibility, it is recommended that you use two parameters.

Syntax

join(separator,array)
Copy after login
Parameters Description
separator Optional. Specifies what is placed between array elements. Default is "" (empty string).
array Required. Arrays to be combined into strings.

Technical details

##Return value: Returns a string composed of array elements. PHP Version: 4 Change Log: In PHP 4.3.0,
separatorParameter becomes optional.

More examples

Separate array elements with different characters:


"; echo join("+",$arr)."
"; echo join("-",$arr)."
"; echo join("X",$arr); ?>
Copy after login

The above is the detailed content of How to use php join. 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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!