strip() 方法用于去除字符串的首尾空格或指定字符。
使用 strip() 方法的語法如下:
string strip ( string $str [, string $charlist ] )
參數 $str 是要處理的字符串,參數 $charlist 是要去除的字符,默認為空格、制表符、換行符等空白字符。
示例:
$str = " Hello, world! ";
echo strip($str); // 輸出:Hello, world!
$str = "---Hello, world!---";
echo strip($str, "-"); // 輸出:Hello, world!
在上面的示例中,第一個 strip() 方法去除了字符串 $str 首尾的空格,第二個 strip() 方法去除了字符串 $str 首尾的連字符"-”。