xxxxxxxxxx
function bind_param(){
if ( func_num_args() <= 1 ){
return false; //not enough args
}
$format = func_get_arg(0)
$args = array_slice(func_get_args(), 1)
//etc
}
# Example 2
# You can also use the ... operator
function bind_param($params){
var_dump($params);
}