當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP trim()用法及代碼示例


PHP中的trim()函數是一個內置函數,該函數從字符串的左右兩側刪除空格和預定義字符。

相關函數

用法:


trim($string, $charlist)

參數:該函數接受一個強製參數和一個可選參數,如上麵的語法所示,如下所述。

  1. $string:此參數指定要從中刪除空格和左右預定義字符的字符串
  2. $charlist:這是一個可選參數,用於指定要從字符串中刪除的字符。如果未提及,則以下所有字符將被刪除:
    • “\0” –空
    • “\t” –選項卡
    • “\n” –新行
    • “\x0B” –垂直選項卡
    • “\r” –回車
    • “” –普通空白

返回值:它通過刪除字符串左右兩側的空格和預定義字符來返回修改後的字符串。

以下示例程序旨在說明trim()函數:

示例1:

<?php 
// PHP program to demonstrate the use of trim()  
// function when second parameter is present 
  
// removes the predefined characters from  
// front and back  
$str = "Hello World!"; 
echo trim($str, "Hell!"); 
?>

輸出:

o World

示例2:

<?php 
// PHP program to demonstrate the use of trim()  
// function when second parameter is absent 
  
$str = "  geeks for geeks "; 
  
// removes all leading and trailing whitespaces  
echo trim($str); 
?>

輸出:

geeks for geeks

參考: http://php.net/manual/en/function.trim.php



相關用法


注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 PHP | trim() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。