Explode function usage analysis in php, phpexplode function usage _ PHP Tutorial

Source: Internet
Author: User
Tags php explode
Analysis of explode function usage in php and phpexplode function usage. Php explode function usage analysis, phpexplode function usage this article examples analysis of php explode function usage. Share it with you for your reference. Details: explode (stringseparator, explode function usage analysis in php, phpexplode function usage

This article analyzes the usage of the explode function in php. Share it with you for your reference. The details are as follows:

Explode (string separator, string [, int limit])

The separator is a null string (""), and explode () returns FALSE. if the value contained in the separator cannot be found in the string, explode () returns an array containing a single string element.

Explode instance 1 with the following code:

The code is as follows:

$ Explode = "aaa, bbb, ccc, ddd, explode, jjjj ";

$ Array = explode (',', $ explode );

Print_r ($ array );
/*
// The result is
Array
(
[0] => aaa
[1] => bbb
[2] => ccc
[3] => ddd
[4] => explode
[5] => JJJJJ
)
*/


We can use the explode function and end function when processing the date or getting the file extension. the following shows the instance code:

The code is as follows:

$ File = "www.jb51.net.gif ";

$ ExtArray = explode ('.', $ file );
$ Ext = end ($ extArray );
Echo $ ext;

// The output value is .gif.


Note: The Separator cannot be a null string, and the string to be split is null.

The Definition and Usage functions are not used. it may be because the delimiter you set does not exist.

I hope this article will help you with PHP programming.

In this article, we analyze the usage of the explode function in php. Share it with you for your reference. Details: explode (string separator ,...

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.