首先來看下兩個方法的定義:
函數原型:array split (string $pattern, string $string [, int $limit])
函數原型:array explode ( string $separator, string $string [, int $limit])
初看沒有啥差別,看起來像功能一樣。我就犯了這個錯誤。 請注意兩個函數的第一個參數string $pattern和string separator,一個是$pattern說明是正規字串,一個是$separator是普通字串。
看下面的程式碼:
複製程式碼 程式碼如下:
$test = end(explode('.', 'abc.txt'));
echo $test;//output txt
:
用複製碼
複製程式碼
?程式碼如下:
$test1 = end(split('.','abc.txt'));
echo $test1;//no output
用split的正確做法是:加義符號
複製程式碼 碼:
$test1 = end(split('.','abc.txt'));
echo $test1;//output txt