<?php class Car { var $color = "add"; function Car($color="green") { $this->color = $color; } function what_color() { return $this->color; } } $car = new Car; echo $car->what_color(),"<br>over"; ?>
PHP版本號php
php 7.0.10php7
所報錯誤this
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Car has a deprecated constructor in E:\phpStorm\firstPhp\test.php on line 8spa
解決方式orm
查閱資料,發現php7.0以後將再也不支持與類名相同的構造方法,構造方法統一使用 __construct()。blog
改正後代碼it
<?php
class Car
{
public $color = "add";
function __construct($color="green") { //注意是雙下劃線
$this->color = $color;
}
public function what_color() {
return $this->color;
}
}
$car = new Car("red");
echo $car->what_color(),"<br>over";
?>