Heim >Backend-Entwicklung >PHP-Tutorial >常用字符串函数(二)_PHP

常用字符串函数(二)_PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 12:32:101176Durchsuche




常用字符串函数(二)



 $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, ","));
?>


常用字符串函数

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:一个简单的图形计数器_PHPNächster Artikel:读取文件内容_PHP