PHP trim 函數語法
trim(要處理的字串);
只要將要處理的字串放入 trim 函數即可,馬上來看範例的應用。PHP 清除字串前後空白範例
<?php
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; //網頁編碼
$origi_string=' 這是測試字串 ';
echo '<pre>'.$origi_string.'</pre>';
$new_string=trim($origi_string);
echo '<pre>'.$new_string.'</pre>';
?>
範例的效果echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; //網頁編碼
$origi_string=' 這是測試字串 ';
echo '<pre>'.$origi_string.'</pre>';
$new_string=trim($origi_string);
echo '<pre>'.$new_string.'</pre>';
?>
這是測試字串
這是測試字串
更多 PHP 字串處理