PHP 面向对象编程(OOP)入门指南
<?php
// 定义一个名为“Car”的类
class Car {
// 类属性
public $color;
public $brand;
// 构造函数初始化颜色和品牌
public function __construct($color, $brand) {
$this->color = $color;
$this->brand = $brand;
}
// 显示车辆信息的方法
public function display() {
return "This is a {$this->color} {$this->brand}.";
}
}
// 创建一个“Car”对象
$myCar = new Car("red", "Ford");
// 使用对象的方法
echo $myCar->display(); // 输出: This is a red Ford.
?>
这段代码定义了一个简单的Car
类,包含了两个公共属性color
和brand
,以及一个构造函数和一个用于显示车辆信息的方法。然后创建了一个Car
对象,并调用了其display
方法,输出车辆的颜色和品牌信息。这个例子展示了面向对象编程的基本概念,包括类、对象、方法和属性。
评论已关闭