Mantis - Quercus
Viewing Issue Advanced Details
3360 minor always 02-26-09 18:01 03-04-09 17:22
koreth  
nam  
normal  
closed 4.0.0  
fixed  
none    
none 4.0.0  
0003360: func_get_args() includes optional parameters in compiled mode
<?php
function foo($a, $b=1) {
  print_r(func_get_args());
}
foo('x');

Regular PHP, and Quercus in interpreted mode, prints

Array (
  [0] => x
)

Quercus in compiled mode prints

Array (
  [0] => x
  [1] => 1
)

Notes
(0003862)
nam   
03-04-09 17:22   
php/3717