首頁 >後端開發 >php教程 >常用字符串函数_PHP

常用字符串函数_PHP

WBOY
WBOY原創
2016-06-01 12:32:08864瀏覽




常用字符串函数(三)



 //颠倒字串
 print("abcdefg  颠倒  ");
 print(strrev("abcdefg")."
");

 //小写字串
 print("小写: ".strtolower("Hello World")."


");

 //大写字串
 print("大写: ".strtoupper("Hello World")."


");

 //去空格
 $text = "     whitespace      ";
 print("\"" . trim($text) . "\"");
?>



常用字符串函数

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn