PHP trim函数用于去除字符串首尾的空白字符或其他指定的字符。
语法: trim(string $str, string $charlist = " \t\n\r\0\x0B"): string
参数说明:
返回值: 返回处理后的字符串。
示例:
$str = " Hello World ";
echo trim($str); // 输出 "Hello World"
$str = "Hello World";
echo trim($str, "dHelo"); // 输出 " W"
在上面的示例中,第一个trim函数调用去除了字符串$str首尾的空格,第二个trim函数调用去除了字符串$str首尾的字符"d"、“H”、“e”、“l”、“o”。