trim()
- trim -- 文字列の先頭および末尾にある空白を取り除く
-
http://jp.php.net/manual/ja/function.trim.php
を使って見る。試しに作って見た trim.php の内容:
<html>
<head>
</head>
<body>
<?php
$test[0] = ' left';
$test[1] = 'right ';
$test[2] = ' both ';
for ( $i = 0 ; $i < 3 ; $i++) {
print "=>". $test[$i]."<= ";
print " ->". trim($test[$i])."<-<br>";
}
?>
表示例:
=> left<= ->left<-
=>right <= ->right<-
=> both <= ->both<-
この他に
rtrim
ltrim
というのもある。
|