The PHP manual states
It is not possible to use
$thisfrom 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
$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