We encountered some problems when using split today. I still do not have a deep understanding of the function. I will make a mark in the close-up. First, let's look at the definitions of the two methods:
Function prototype: array split (string $ pattern, string $ string [, int $ limit])
Function prototype: array explode (string $ separator, string $ string [, int $ limit])
There is no difference at first glance, and it seems that all functions are the same. I made this mistake. Note that the first parameters of the two functions are string $ pattern and string separator. $ pattern indicates a regular string, and $ separator indicates a normal string.
See the following code:
The code is as follows:
$ Test = end (explode ('.', 'abc.txt '));
Echo $ test; // output txt
Replace:
The code is as follows:
$ Test1 = end(split('.', 'abc.txt '));
Echo $ test1; // no output
The correct method to use split is to add escape characters.
The code is as follows:
$ Test1 = end (split ('\ .', 'abc.txt '));
Echo $ test1; // output txt
Analysis: The "." symbol is the keyword of the regular expression, so split is invalid, while explode is valid.
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.