Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
642 views
in Technique[技术] by (71.8m points)

migration - Usage of constructor failing in php 7.2 compared to php 5.6

As recommended I have amended the constructor with __construct however the call is still failing

callee

echo(10);
$org = new Animals();
echo(11);
$sound = $org->getSound();
echo($sound);

Main Class

class Animals{
  private $A_ID; 
  public function __construct($id){
    echo(20);
    $this->A_ID = $id;
  }

  function getSound(){
    return isset($this->A_ID) ? "grr" : "no";
  }
}

The output from echo always 10 however i expect 102011no.

I am struggling here and so any thoughts on why this is not working?

question from:https://stackoverflow.com/questions/65886699/usage-of-constructor-failing-in-php-7-2-compared-to-php-5-6

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...