Strtok---&http://www.aliyun.com/zixun/aggregation/37954.html ">nbsp; Cut a string
Syntax: String strtok (String arg1, String arg2)
Description:
Strtok () is used to cut the string, and that is if you have a string like "This was an example string", you can use a blank character as a token to cut the string apart and become an individual word.
Example:
<?php
$string = "This is a example string";
$tok = Strtok ($string, "");
while ($tok) {
echo "word= $tok <br>";
$tok = Strtok ("");
}
?>
Note: The string argument is used only the first time the Strtok () is called, and the call only needs to use the tag, just as it will record the current string. To cut another new string, you only need to call Strtok () and string parameters again. You can place a variety of tags in the tag parameters, and when you find the characters in any argument, the string is cut open.
Your mark may be equal to "0", which is equivalent to false in the conditional expression.
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.