|
Posted by Fabian Hore on 10/13/83 11:27
What Chris points you to is indeed the right place to look, but the fact
that you write $function_to_execute()
suggests you may be used to languages such as Javascript, or Actionscript
where everything is an object.
This fundamental difference in PHP may catch you out another time.
*A Function is not an object*. As you'll see from the usage of
call_user_func().
"Chris Hope" <blackhole@electrictoolbox.com> wrote in message
news:dh0aro$qhl$1@lust.ihug.co.nz...
> _andrea.l wrote:
>
>> I'd like to write a function like:
>>
>> function f(){ ... bla ...}
>> f_example(f);
>>
>> function f_example($function_to_execute)
>> {...bla... $function_to_execute() ...bla....}
>>
>> AND how to pass the variable of the function :
>>
>> function f_example($function_to_execute($var1,$var2))
>> {...bla... $function_to_execute() ...bla....}
>>
>> Thank you in advance for the time you'll spend for me,
>> Andrea.
>
> This should get you going in the right direction:
> http://www.php.net/manual/en/function.call-user-func-array.php
>
> --
> Chris Hope | www.electrictoolbox.com | www.linuxcdmall.com
Navigation:
[Reply to this message]
|