Php explode function example tutorial

Source: Internet
Author: User
Tags php explode

Php tutorial explode function instance tutorial

 
Explode (string separator, string [, int limit])
Separator is a null string (""), and explode () returns FALSE. If the value of separator cannot be found in string, explode () returns an array containing a single string element.
 
*/

// Explode instance 1

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

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

Print_r ($ array );
/*

Result:
Array
(
[0] => aaa
[1] => bbb
[2] => ccc
[3] => ddd
[4] => explode
[5] => jjjjj
)
*/

// We can use the explode and end functions when processing the date or getting the file extension. The following shows the example.

$ File = "www.bKjia.c0m.gif ";
 
$ ExtArray = explode ('.', $ file );
$ Ext = end ($ extArray );
Echo $ ext;
 
/*
Output Value: .gif

 
Some Function errors are prompted:
 
Note: Separator cannot be an empty string. Note: The delimiter cannot be a null string.
The string to be split is empty.
 
 
Definition and Usage no split Function
It may be that the delimiter you set does not exist.

Note, this site original tutorial, reprinted with from http://www.bKjia. c0m/phper/php.html

*/

Related Article

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.