How to learn PHP implode ()

Source: Internet
Author: User
Tags learn php

Implode function Understanding 1

The implode () function combines array elements into a single string.

1. How the array elements are understood;

2. Whether the array element is the object of the action;

3. Whether the purpose of the function is to integrate into a string;

Implode function Understanding 2

Grammar

Implode (Separator,array)

1.implode parameter a separator whether to add content to each key value of the array;

2.implode parameter Two array is a function of an array of objects;

Parameters

Describe

Separator optional. Specify what is placed between array elements. The default is "" (empty string).

Array required. The array to combine as a string.

Description

Although the separator parameter is optional. However, for backward compatibility, it is recommended that you use two parameters.

1.separator parameter is optional;

2.implode parameter two arra is required;

Tips and comments

Note: Implode () can receive two parameter orders. But for historical reasons, explode () is no good. The separator parameter must be guaranteed before the string parameter.

Implode function Understanding 3

<?php

$arr = Array (' H ', ' I ', ' J ', ' k! ');

echo implode (' m ', $arr);

?>

The output result is: Hm Im Jm K!

<?php

$arr = Array (' H ', ' I ', ' J ', ' k! ');

Echo Implode (", $arr);

?>

The output is: H I J K!

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.