The PHP manual states

It is not possible to use $this from anonymous function before PHP 5.4.0

on the anonymous functions page. But I have found I can make it work by assigning $this to a reference and passing the reference to a use statement at the function definition.

$CI = $this;
$callback = function () use ($CI) {
    $CI->public_method();
};

Is this a good practice, and is there a better way to access $this inside an anonymous function using PHP 5.3?

Edit: Removed the assign by ref character & since objects are assigned by ref by default in PHP. $CI = &$this becomes $CI = $this

link|improve this question

69% accept rate
Just a minor forum convention - it is usually better to accept an answer than to edit a question to reflect your preferred answer. Mainly this is so that responses still make sense in perpetuity, but also of course to give credit for a correct answer. – halfer Dec 5 '11 at 23:08
Beware that $CI = $this; and $CI =& $this; aren't actually identical. Maybe for your purposes, but they're not the same. Try $CI = 'bla'; var_dump($this); with both versions to see the difference. – Rudie Dec 6 '11 at 13:51
@Rudie I'm adding the documentation for your comment – steampowered Dec 6 '11 at 19:08
@steampowered There's a good example/article online somewhere about this, but I couldn't find it =) Sorry. Just try it if you don't see the difference. It's obvious then. – Rudie Dec 7 '11 at 10:35
feedback

5 Answers

up vote 3 down vote accepted

It will fail when you try to call a protected or private method on it, because using it that way counts as calling from the outside. There is no way to work around this in 5.3 as far as I know, but come PHP 5.4, and closure rebinding, you will be allowed to use something like this:

$user = new User();
$nameChanger = function($name) {
  $this->name = $name;
};
$nameChanger->bindTo($user);
$nameChanger('Joe');

Effectively, anonymus functions will have a bindTo() method, that can be used to specify what $this points to, inside the function.

link|improve this answer
Marking your answer correct, but just to clarify for other readers: the convention used in the question will work for public methods using the object which is referencing $this. – steampowered Dec 8 '11 at 21:40
Non-public methods can be accessed using reflection. Inefficient and a little evil, but it works. – outis Feb 13 at 12:29
feedback

That is the normal way it was done.
b.t.w, try to remove the & it should work without this, as objects pass by ref any way.

link|improve this answer
feedback

That seems alright if your passing by reference it's the correct way to do it. If your using PHP 5 you don't need the & symbol before $this as it will always pass by reference regardless.

link|improve this answer
1  
The OP must be using 5.3 or greater, since 4.x didn't support anonymous functions :-) – halfer Dec 5 '11 at 20:15
feedback

This is fine. I should think you could do this also:

$CI = $this;

... since assignations involving objects will always copy references, not whole objects.

link|improve this answer
feedback

Don't always rely on PHP to pass objects by reference, when you are assigning a reference itself, the behavior is not the same as in most OO languages where the original pointer is modified.

your example:

$CI = $this;
$callback = function () use ($CI) {
$CI->public_method();
};

should be:

$CI = $this;
$callback = function () use (&$CI) {
$CI->public_method();
};

NOTE THE REFERENCE "&" and $CI should be assigned after final calls on it has been done, again else you might have unpredictable output, in PHP accessing a reference is not always the same as accessing the original class - if that makes sense.

http://php.net/manual/en/language.references.pass.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.