Re: [PHP] Using parent with call_user_func_array

2005-09-03 Thread Chris
You know, ... after I posted this, I found another bug (not sure how I missed it before). This one may actually be the cause of my problem: http://bugs.php.net/bug.php?id=32290 I don't relish the idea of an upgrade to work around this problem though. So any thoughts or idea would still be appr

[PHP] Using parent with call_user_func_array

2005-09-03 Thread Chris
Should these two pieces of code function identically? $aArgs = array('testarg1','testarg2'); call_user_func_array(array('parent','AddNewElement',$aArgs) and parent::AddNewElement('testarg1','testarg2'); I'm havign trouble debugging this, but my app seems to be going into an infinite loop when