String function Library: strtok

Source: Internet
Author: User
Keywords PHP Chinese function Manual strtok
Tags aliyun example function function library html http php php chinese function manual

Strtok

(PHP3, PHP4)

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.

Reference: Split () explode ()

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.