⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 class.customer.php

📁 Professional PHP5 code for this book
💻 PHP
字号:
<?php  class Customer {    public $id;    public $customerNumber;    public $name;       public function __construct($customerID) {      //fetch customer infomation from the database      //      //We're hard coding these values here, but in a real application      //these values would come from a database           $data = array();      $data['customerNumber'] = 1000000;      $data['name'] = 'Jane Johnson';           //Assign the values from the database to this object      $this->id = $customerID;      $this->name = $data['name'];      $this->customerNumber = $data['customerNumber'];    }  }?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -