打赏

2021年8月22日

策略模式

摘要: 策略模式 <?php interface PayInterface { public function pay(); } class AliPay implements PayInterface { public function pay() { echo '支付宝支付'; } } class Te 阅读全文

posted @ 2021-08-22 11:52 头大的冯冯 阅读(8) 评论(0) 推荐(0) 编辑

单例模式

摘要: 单例模式 <?php //单例模式 class Request { private static $request; protected $method; protected $uriPath; public function __construct() { } private function _ 阅读全文

posted @ 2021-08-22 11:12 头大的冯冯 阅读(10) 评论(0) 推荐(0) 编辑

导航