code show as below:
<?php
namespace Controller\Ip;
class IpController{
public $ip;
public $key;
public function Run(){
$this->$ip = '111';
$this->$key = '222';
echo $this->$ip; //输出:222
}
Why is the final output $this->$key? Looking for a solution, and I hope you can explain it, thank you very much