码迷,mamicode.com
首页 > Web开发 > 详细

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP

时间:2017-07-08 10:11:36      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:line   bsp   div   php7   cto   划线   future   public   highlight   

<?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 7.0.10

所报错误

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 8

解决方式

查阅资料,发现php7.0之后将不再支持与类名相同的构造方法,构造方法统一使用 __construct()。

改正后代码

<?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";
?>

 

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP

标签:line   bsp   div   php7   cto   划线   future   public   highlight   

原文地址:http://www.cnblogs.com/lxmwb/p/7135595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!