Ben sadece PHP öğrenme yaşıyorum ve ben hakkında kafam karıştı ne __ yapı () yönteminin amacı nedir?
Ben bu yapabilirsiniz:
class Bear {
// define properties
public $name = 'Bill';
public $weight = 200;
// define methods
public function eat($units) {
echo $this->name." is eating ".$units." units of food... <br />";
$this->weight += $units;
}
}
Öyleyse neden yerine bir kurucu ile ne? :
class Bear {
// define properties
public $name;
public $weight;
public function __construct(){
$this->name = 'Bill';
$this->weight = 200;
}
// define methods
public function eat($units) {
echo $this->name." is eating ".$units." units of food... <br />";
$this->weight += $units;
}
}