Home > Backend Development > PHP Tutorial > 常用字符串函数(一)_PHP

常用字符串函数(一)_PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-01 12:32:07
Original
896 people have browsed it



常用字符串函数(一)



 $first = "abc";
 $second = "aBc";
 if(strcmp($first, $second) == 0)//字串比较
 {
  print("字符串相等:"."
");
 }
 else
 {
  print("字符串不相等"."
");
 }
?>

 print("a short string ".strlen("a short string")."
");//字串长度
?>

 $text = "hello world";
 print(strpos($text, "w")."
");//寻找字串中某字元最先出现处
?>


常用字符串函数
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template