//將IP點分地址的字元轉化回IP v4格式地址
int ip2long(string ip_address)
//將IP v4格式地址轉化回IP點分地址的字串
string long2ip(int proper_address)
//取得環境變數 varname,成功則傳回變數值,失敗由傳回false
string getenv(string varname)
//用來設定系統內容
void putenv(string setting)
//獲得當前PHP指令碼的屬主名
string get_current_user(void)
//調用function_name指定的使用者函數
string get_cfg_var(string function_name[,mixed parrameter[,mixed...]])
//返回與 service 關聯的連接埠(protocol),必須是TCP或UDP
int getservbyname(string service,string protocol)
//返回與 port 關聯的服務名(protocol),必須是TCP或UDP
string getservbyport(int port,string protocol)
//取絕對值
mixed abs(mixed number)
//開平方根
float sqrt(float arg)
//自然對數e的次方值
float exp(float arg)
//返回圓周率
double pi(void)
//四捨五入
double round(double val)
//計算大於指定數的最小整數
int ceil(float number)
//計算小於指定的最大整數
int floor(float number)
//取最大值
mixed max(mixed arg1,mixed arg2...mixed argn)
//取最小值
mixed min(mixed arg1,mixed arg2...mixed argn)
//取隨機數
int rand([int min],[int max])
//數制轉換
string base_convert(string number,int frombase,int tobase)
//格式化數字字串
string number_format(float number,int[decimals],string[decpoint],string[thounsands_sep])