首页 > 代码库 > php常用函数

php常用函数

//原来的utf-8编码转换为GBK编码
iconv
("UTF-8","GBK",$data);

//判断参数是否为数字,是则返回true,否则返回false
is_numeric($var);

 

php常用函数