Php judgment character and string inclusion method attribute _ PHP Tutorial

Source: Internet
Author: User
Php determines the inclusion method attributes of characters and strings. The following describes how to use it: 1. strstr: returns a string from the start to the end of the character to be judged. If no return value is returned, the copied code is not included as follows :? Php * is described as follows in the example in the manual:

1. strstr: returns a string from the start to the end of the character to be judged. If no return value exists, it does not contain

The code is as follows:


/* Example in the manual */
$ Email = 'User @ example.com ';
$ Domain = strstr ($ email ,'@');
Echo $ domain; // prints @ example.com

?>


2. stristr: it is used exactly the same as strstr. The only difference is that stristr is case insensitive.

3. strpos: returns a boolean value. FALSE and TRUE. use "=" to judge. the execution speed of strpos is faster than that of the above two functions. In addition, strpos has a parameter that specifies the location for judgment, but is left blank by default. it indicates determining the entire string. the disadvantage is poor support for Chinese characters. usage

The code is as follows:


$ Str = 'abc ';
$ Needle = 'a ';
$ Pos = strpos ($ str, $ needle );


4. use explode for determination

The code is as follows:


Function checkstr ($ str ){
$ Needle = "a"; // determines whether the string contains.
$ Tmparray = explode ($ needle, $ str );
If (count ($ tmparray)> 1 ){
Return true;
} Else {
Return false;
}
}


Substring 1. strstr: returns a string from the start to the end of the character to be judged. If no return value is returned, the code is not included as follows :? Php/* example in the manual...

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.