Home php教程 php手册 字符处理函数 strtok(string str,string arg)

字符处理函数 strtok(string str,string arg)

Jun 21, 2016 am 09:07 AM
split string strtok tok word

函数

今天用到一个函数,查了一下手册,给出了如下的说明:
Copy after login
<?php$string = "This is\tan example\nstring";$tok = strtok($string," \n\t");while ($tok) {    echo "Word=$tok<br>";    $tok = strtok(" \n\t");}?>
Copy after login
输出:
Copy after login
Word=This
Copy after login
Word=is
Copy after login
Word=an
Copy after login
Word=example
Copy after login
Word=string
Copy after login
这个函数还有自动存储位置的功能,能够在连续的切割字符串取得相应的值,相对于split(string arg)的值
Copy after login
保存在数组中,但其arg却可以是多个字符,而split只能一个字符!
Copy after login
 



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to cancel automatic word wrapping in word How to cancel automatic word wrapping in word Mar 19, 2024 pm 10:16 PM

How to cancel automatic word wrapping in word

Detailed explanation of how to display the ruler in Word and how to operate the ruler! Detailed explanation of how to display the ruler in Word and how to operate the ruler! Mar 20, 2024 am 10:46 AM

Detailed explanation of how to display the ruler in Word and how to operate the ruler!

How to add handwritten signature to word document How to add handwritten signature to word document Mar 20, 2024 pm 08:56 PM

How to add handwritten signature to word document

How to set page margins for Word How to set page margins for Word Mar 19, 2024 pm 10:00 PM

How to set page margins for Word

How to draw a dotted line in word How to draw a dotted line in word Mar 19, 2024 pm 10:25 PM

How to draw a dotted line in word

Specific steps to delete down arrow in Word! Specific steps to delete down arrow in Word! Mar 19, 2024 pm 08:50 PM

Specific steps to delete down arrow in Word!

Where is the shading setting in word? Where is the shading setting in word? Mar 20, 2024 am 08:16 AM

Where is the shading setting in word?

How to automatically sort word serial numbers How to automatically sort word serial numbers Mar 20, 2024 pm 09:20 PM

How to automatically sort word serial numbers

See all articles