Analysis of explode function usage in php

Source: Internet
Author: User
This article mainly introduces the usage of the explode function in php. The example analyzes the application of the explode function to split strings and obtain file extensions, which has some reference value, for more information about how to use the explode function in php, see the example in this article. 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.

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.