Skip to content

Instantly share code, notes, and snippets.

@maeharin
Created January 17, 2013 08:54
Show Gist options
  • Save maeharin/4554660 to your computer and use it in GitHub Desktop.
Save maeharin/4554660 to your computer and use it in GitHub Desktop.
<?php
class C
{
protected $middleware;
public function __construct() {
$this->middleware = array($this); //Cオブジェクト自身を参照させる
}
public function call() {
echo 'called';
}
}
$c = new C();
$c->middleware[0]->call(); //protectedだと参照できない!?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment