JAVASCRIPT提供 split(',') //以逗點做字串分割
ex:
var stringArray = "123,456,789" ;
var getElement = stringArray.split(',')[1] ;
getElement 輸出即為 456 ~~~
PHP 提供 explode() //可以用特定字元切割字串,並存入陣列中
語法: $要被存入的陣列變數 = explode("分隔符號",要被切割的字串);
ex :
$engWords = "abc,def,ghi,jkw" ;
$words = explode(",", $engWords);
echo $words[0]; // abc
echo $words[1]; // def
ref: http://tw.php.net/explode
2008年12月14日 星期日
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言
try comments