这篇文章主要为大家详细介绍了PHP strtok()函数优点解析,具有一定的参考价值,可以用来参考一下。
对PHP的strtok()函数的优点详解感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* PHP的strtok()函数的优点详解
*
* @param
* @arrange 512-笔记网: q1010.com
**/
$string = "这是PHP论坛 论坛版块 论坛栏目 论坛H管理员 论坛会员";
$arr = explode("论坛",$string);
foreach($arr as $v)
{
echo $v."<br />";
}
echo "-------------<br />";
/*** 来自四海网(www.q1010.com) ***/
返回: 这是PHP
/**
* PHP的strtok()函数的优点详解
*
* @param
* @arrange 512-笔记网: q1010.com
**/
$string = "这是PHP论坛 论坛版块 论坛栏目 论坛H管理员 论坛会员";
$tok = strtok($string, " H"); //空格+H
$n=1;
while ($tok !== false) {
echo "$tok<br />";
$tok = strtok(" "); //空格
//if($n>2)break; //可以随时跳出。
//$n++;
}
echo "-------------<br />";
/*** 来自四海网(www.q1010.com) ***/
/**
* PHP的strtok()函数的优点详解
*
* @param
* @arrange 512-笔记网: q1010.com
**/
$string = "This is\tan example\nstring";
$tok = strtok($string, " \n\t"); #空格,换行,TAB
while ($tok !== false) {
echo "$tok<br />";
$tok = strtok(" \n\t");
}
echo "-------------<br />";
/*** 来自四海网(www.q1010.com) ***/
返回: This is an example string -------------
/**
* PHP的strtok()函数的优点详解
*
* @param
* @arrange 512-笔记网: q1010.com
**/
$string = "abcde 123c4 99sadbc99b5232";
$tok = strtok($string, "bc");
while ($tok !="") {
echo "$tok<br />";
$tok = strtok("bc");
}
echo "-------------<br />";
/*** 来自四海网(www.q1010.com) ***/
返回: a de 123 4 99sad 99 5232 ------------- 示例4:演示用for来遍历:
/**
* PHP的strtok()函数的优点详解
*
* @param
* @arrange 512-笔记网: q1010.com
**/
$line = "leon\tatkinson\tleon@clearink.com";
for($token = strtok($line,"\t");$token!="";$token=strtok("\t"))
{
print("token: $token<BR>\n");
}
/*** 来自四海网(www.q1010.com) ***/
返回: token: leon token: atkinson token: leon@clearink.com
本文来自:http://www.q1010.com/173/1176-0.html
注:关于PHP strtok()函数优点解析的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:strtok()
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。