标签: cakephp-2.3
我需要从外部访问函数内部的变量,即。控制器中的另一个功能。
public function method1() { $var=1; } public function method2() { $this->method1(); //here i need to access the $var=1 from the method1() }