技巧集锦

1、php可以不先声明成员变量,直接赋值

name='Buu';
    }
}
$test = new Test();
echo $test->name;

2、unset可以同时作用于多个变量

unset($a, $b, $c);

3、func_get_args()可以在函数内获得函数的传入值

test('小明', 7);
function test($name, $nage){
    $args = func_get_args();
    print_r($args);exit;
}
返回:
Array ( [0] => 小明 [1] => 7 )

4、debug_backtrace
可以获得函数或者方法执行的过程

5、strcasecmp
可以忽略字符串的大小写进行比较

你可能感兴趣的:(技巧集锦)