Похожие чаты

<?Php Class Car { public $name; public $color;

function __construct($name) {
$this->name = $name;
}
function getName() {
return $this->name;
}
}

$tesla = new Car("Model X");
echo $tesla->getName();
?>

1 ответов

3 просмотра

Oh yea maybe he wants something like this

Похожие вопросы

Обсуждают сегодня

Карта сайта