PHP Join () function

Source: Internet
Author: User

The PHP join () function gets a string that is composed of array elements. This article introduces the use and basic examples of the PHP join () function, which is of interest to the code farmer.

Definition and usage

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

The join () function is an alias for the implode () function.

Note: the join () function accepts two parameter orders. However, for historical reasons, explode () is not possible, and you must ensure that the separator parameter precedes the string parameter.

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

Grammar
join(separator,array)
Parameters Description
Separator Optional. Specifies what is placed between the elements of the array. The default is "" (an empty string).
Array Necessary. An array to combine as a string.

Technical details
return value: Returns a string that is composed of array elements.
PHP version: 4 +
Update log: In PHP 4.3.0, theseparator parameter becomes optional.

Instance

Separate the array elements with different characters:

<?php$arr = Array (' Hello ', ' world! ', ' I ', ' love ', ' shanghai! '); echo Join ("", $arr). " <br> "; Echo Join (" + ", $arr)." <br> "; Echo Join ("-", $arr)." <br> "; Echo Join (" X ", $arr);? >

Run online

PHP Join () function

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.