class cls{ protected $a; public function test(){ $this->a = 'Hello'; }public function show(){ echo $this->a; }}只要在类中申明一个全局变量就可以了,使用 $this-> 来调用