border_decorator.php

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

PHP
24
字号
<?phprequire_once("abstract_widget.php");class BorderDecorator extends Widget {  private $widget;    function __construct(Widget & $widget) {         $this->widget = $widget;  }  public function draw() {                  $this->widget->update($this->getSubject());                  echo  "<table border=0 cellpadding=1 bgcolor=#3366ff>";         echo  "<tr bgcolor=#ffffff><td>";              $this->widget->draw();         echo "</td></tr></table>";  }}?>

⌨️ 快捷键说明

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