class Mobile { public $brand; //品牌 public $model; //型号 public $price; //价格 public function __construct($brand, $model, $price) { $this->brand = $brand; $this->model = $model; $this->price = $price; } } spl_autoload_register(function ($className) { require __DIR__ . '/public/' . $className . '.php'; }); $mobile = new Mobile('vivo', 'nex S', 5800); echo $mobile->brand . $mobile->model . ':' . $mobile->price, '<br>';