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

📄 testcustomer.php

📁 Professional PHP5 code for this book
💻 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 + -