For example:
function test($left, $right)
{
}
$ret = some_php_api('t est');
print_r($ret);
//it would be
/*
array(
1 ='left',
2 ='right',
)
*/
function test($left, $right)
{
}
$ret = some_php_api('t est');
print_r($ret);
//it would be
/*
array(
1 ='left',
2 ='right',
)
*/
Comment