当前位置:Gxlcms > PHP教程 > 常用字符串函数_PHP

常用字符串函数_PHP

时间:2021-07-01 10:21:17 帮助过:2人阅读




常用字符串函数(三)


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

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


");

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


");

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



常用字符串函数

人气教程排行