Heim > Fragen und Antworten > Hauptteil
Der Code lautet wie folgt:
<?php
namespace Controller\Ip;
class IpController{
public $ip;
public $key;
public function Run(){
$this->$ip = '111';
$this->$key = '222';
echo $this->$ip; //输出:222
}
Warum ist die endgültige Ausgabe $this->$key? Ich suche nach einer Lösung, ich hoffe, Sie können sie erklären, vielen Dank
淡淡烟草味2017-06-17 09:17:14
<?php
namespace Controller\Ip;
class IpController{
public $ip;
public $key;
public function Run(){
$this->ip = '111';
$this->key = '222';
echo $this->ip;
}