thinkphp用到的函数

array_change_key_case($arr) 返回全部为大写或小写的数组 默认小写

list()      //值赋给对应的每一个参数
$info = array('coffee', 'brown', 'caffeine');
list($drink, $color, $power) = $info;

spl_object_hash()

is_resource();是否是资源 
get_resource_type($res); 返回资源类型

serialize();

debug_backtrace();

call_user_func_array(array($cls,$method),$args);    //调用某实例类的方法

func_get_args();   //获取传入函数的参数 值为数组

parse_url(); //解析url
parse_str();    //把字符串解析到变量

ucwords();    //首字母大写

strstr();    //搜索一个字符串在另一个字符串的第一次出现

array_keys();    //获取键名

property_exists($this, $name)  //类中是否有某成员属性

get_class($this);     //返回类名

你可能感兴趣的:(thinkphp)