d lafountain; [EMAIL PROTECTED]
> Subject: Re: [PHP-DEV] call_user_function()
>
>
> Can you send a unified diff of what call_user_function()
> would look like
> with your changes?
>
> Andi
>
> At 06:04 AM 2/25/2002 -0800, brad lafountain wrote:
> >Ok,
>
Can you send a unified diff of what call_user_function() would look like
with your changes?
Andi
At 06:04 AM 2/25/2002 -0800, brad lafountain wrote:
>Ok,
> I know ive already posted this but no responded. So I'll do it again.
>
>Currently call_user_function() doesn't call overloaded class met
Ok,
I know ive already posted this but no responded. So I'll do it again.
Currently call_user_function() doesn't call overloaded class methods.
I hacked together a function to get around this. Does anyone want to look at it
and see if it's gunna mess anything up as far as zend execution. if not
well... i hacked up a function to handle this...
does anyone wanna look at my code and maybe possible include it with
call_user_function
int my_call_user_function(HashTable *function_table, zval **object_pp, zval
*function_name, zval *retval_ptr, int param_count, zval *params[] TSRMLS_DC)
{
I was wondering why call_user_function doens't handle calling methods of
objects for an incomplete_class_entry.
call_user_function(NULL, &incomplete_class, function_name, return, 0, NULL);
i took a look at the code and it assumes that the function that you want to
call is in the class_entry.func