去除字串左右空白
<?php $str = ' abc '; echo trim($str); ?>輸出結果:
abc
去除字串左邊空白
<?php $str = ' abc '; echo ltrim($str); ?>輸出結果:
abc
去除字串右邊空白
<?php $str = ' abc '; echo rtrim($str); ?>輸出結果:
abc
字串轉小寫
<?php $str = 'ABC'; echo strtolower($str); ?>輸出結果:
abc
字串轉大寫
<?php $str = 'abc'; echo strtoupper($str); ?>輸出結果:
ABC
字串的字首大寫
<?php $str = 'abc'; echo ucfirst($str); ?>輸出結果:
Abc
字串的字首小寫
<?php $str = 'ABC'; echo lcfirst($str); ?>輸出結果:
aBC
字串中的每一個字的開頭字元大寫
<?php $str = 'apple newsletter'; echo ucwords($str); ?>輸出結果:
Apple Newsletter
沒有留言:
張貼留言