📄 testcustomer.php
字号:
<?php require_once('class.SweepstakesCustomer.php'); //since this file already includes class.Customer.php, there's //no need to pull that file in, as well. function greetCustomer(Customer $objCust) { print "Welcome back to the store $objCust->name!"; } //Change this value to change the class used to create this customer object $promotionCurrentlyRunning = true; if ($promotionCurrentlyRunning) { $objCust = new SweepstakesCustomer(12345); } else { $objCust = new Customer(12345); } greetCustomer($objCust); ?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -