欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

常用字符串函数(二)_PHP

程序员文章站 2022-05-28 09:19:04
...



常用字符串函数(二)



$text = "My dog's name is Angus.";
//print Angus
print(substr($text, 17, 5)."
");//取出子串
?>

//切开字串
// create a demo string
$line = "leon\tatkinson\tleon@clearink.com";

// loop while there are still tokens
for($token = strtok($line, "\t");
$token != "";
$token = strtok("\t"))
{
print("token: $token
\n");
}
?>

//传回字串中某字串开始处至结束的字串
$text = "Although this is string, it's not very long.";
print("


".strstr($text, ","));
?>


常用字符串函数(二)_PHP