2008年12月26日 星期五

常用簡體字意思

簡體 繁體

帧 -> 封包 (EX: 以太网帧长度 ->乙太網路封包長度)

数据库->資料庫

素數定理->質數定理

散列表 -> 雜湊表(Hash Table)

析构函数 -> 解構函數

續~

2008年12月14日 星期日

字元分割

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