PHP函数trim()用于去除字符串开头和结尾处的空格或其他指定字符
▥php
𝄐 0
php trim()方法,phptrim函数,phptrim()
PHP函数trim()用于去除字符串开头和结尾处的空格或其他指定字符。
它的语法为:
trim(string $str, string $character_mask = " \t\n\r\0\x0B") : string
其中,第一个参数$str表示要进行处理的字符串;第二个参数$character_mask是可选的,可以指定需要去除的字符集合。
下面是一些示例:
php
// 去除开头和结尾处的空格
$str1 = " Hello World! ";
$str2 = trim($str1);
echo $str2; // 输出:Hello World!
// 去除指定的字符
$str3 = "abcd1234";
$str4 = trim($str3, "a..z");
echo $str4; // 输出:1234
// 去除换行符和制表符
$str5 = " \t Hello \n World!\r\n ";
$str6 = trim($str5, " \t\n\r");
echo $str6; // 输出:Hello World!
在以上示例中,trim()函数分别去除了字符串开头和结尾的空格、字母,以及特定的换行符和制表符。
PHP函数trim()用于去除字符串开头和结尾处的空格或其他指定字符。
它的语法为:
trim(string $str, string $character_mask = " \t\n\r\0\x0B") : string
其中,第一个参数$str表示要进行处理的字符串;第二个参数$character_mask是可选的,可以指定需要去除的字符集合。
下面是一些示例:
php
// 去除开头和结尾处的空格
$str1 = " Hello World! ";
$str2 = trim($str1);
echo $str2; // 输出:Hello World!
// 去除指定的字符
$str3 = "abcd1234";
$str4 = trim($str3, "a..z");
echo $str4; // 输出:1234
// 去除换行符和制表符
$str5 = " \t Hello \n World!\r\n ";
$str6 = trim($str5, " \t\n\r");
echo $str6; // 输出:Hello World!
在以上示例中,trim()函数分别去除了字符串开头和结尾的空格、字母,以及特定的换行符和制表符。
本文地址:
/show-270895.html
版权声明:除非特别标注原创,其它均来自互联网,转载时请以链接形式注明文章出处。