目錄
1.將字元串轉換成小寫 strtolower(): 該函數將傳入的字元串參數所有的字元都轉換成小寫,並以小定形式放回這個字元串 2.將字元轉成大寫 strtoupper(): 該函數的作用同strtolower函數相反,是將傳入的字元參數的字元全部轉換成大寫,並以大寫的形式返回這個字元串.用法同strtolowe()一 樣. 3.將字元串首字元轉換成大寫 ucfirst(): 該函數的作用是將字元串的第一個字元改成大寫,該函數返迴首字元大寫的字元串.用法同strtolowe()一樣. 4.將字元串每個單詞的首字元轉換成大寫 ucwords(): 該函數將傳入的字元串的每個單詞的首字元變成大寫.如"hello world",經過該函數處理後,將返回"Hello Word".用法同strtolowe()一樣.
$str = "Hello"; $number = 123; $txt = sprintf("%s world. Day number %u",$str,$number); echo $txt;
$search = array('one', 'two', 'three'); $replace = array('1', '2', '3']); $content = str_replace($search, $replace, $file_tpl);
$a = '<br><a href="/calendar/app/cont_13522705.html" class="text">7月10日當周ECRI領先指標</a>'; echo preg_replace("(<a[^>]*class=\"text\">(.+?)<\/a>)","$1", $a);