回php_cookbook

//'5.1'指定樣式替換的結果
TIPS PHP的常規表示式並不影響到他們所處理的字串內容,而是根據所給的
樣式和字串傳回一新的字串,因此需要一個新的變數來接它。


//'5.9'檢驗網頁傳送的資料
TIPS exec (esecapeshellcmd ($input),$output)會跳脫所有的
shell萬用字元,讓使用者輸入的內容無法危害你的系統安全。
empty()函式只檢查有沒有值,不會檢查是否為有效值。


//'5.12'檢查重複的字
the: =>2
ugly: =>1
lady: =>1
chased: =>1
handsome: =>1
man: =>1
There were [the] occurrences of the word 'the'
The The the Hello Truck Hello The the Jester Rye
array(6) { [""]=> array(1) { [0]=> bool(false) } ["the"]=> array(5) { [1]=> int(1) [2]=> int(5) [3]=> int(9) [7]=> int(31) [8]=> int(35) } ["hello"]=> array(2) { [4]=> int(13) [6]=> int(25) } ["truck"]=> array(1) { [5]=> int(19) } ["jester"]=> array(1) { [9]=> int(39) } ["rye"]=> array(1) { [10]=> int(46) } }
TIPS var_dump()印出陣列的相關訊息
strtolower()將字串轉成小寫
strpos()找出字串首次出現的位置
strlen()字串的長度


//'5.13'減少輸入的需要
Deleted
TIPS strtoupper()轉換為大寫
substr($input,0,1)取字串,從0開始,取1個字元