首页
php
Open main menu
首页
php
首页
php
php playground
PHP 对象
PHP 对象
Select a tab
run.php
run.php
点击运行
<?php class Car { var $color; function __construct($color = "green") { $this->color = $color; } function what_color() { return $this->color; } } $car = new Car(); echo $car->color;
Select a tab
运行结果
运行结果
运行中
green
php