class.sweepstakescustomer.php

来自「Professional PHP5 code for this book」· PHP 代码 · 共 16 行

PHP
16
字号
<?php  require_once('class.Customer.php');  class SweepstakesCustomer extends Customer {    public function __construct($customerID) {        parent::__construct($customerID);             if($this->customerNumber == 1000000) {          print "Congratulations $this->name!  You're our millionth customer! " .                "You win a year's supply of frozen fish sticks!  ";        }     }   }?>

⌨️ 快捷键说明

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