php面向对象总结二

非静态变量直接通过构造函数赋值,静态变量赋值:

class info {

public static $height;

public static $age;

function __construct($height, $age) {

self::$height = $height;

self::$age = $age;

self::display ();

}

public static function display() {

echo self::$height . ' ' . self::$age;

}

}


$info = new info ( '178', '23' );

待完成。。。



你可能感兴趣的:(php面向对象总结二)