Ok it's possible to do this :
Quote:
$f->bar = function () use ($f) {$f->internal();};
|
but I need to dynamicaly build my function with create_function (since the body of my function is passed to me as a string) how do I work with the keyword "use" then ?