摘要:
适配器设计模式只是将某个对象的接口适配为另一个对象所期望的接口。适配器设计模式的目标是有助于面向对象的代码,该模式可以为对象接口创建回话。通过实例说明: 1 /* 2 在项目最初的代码库中,名为errorObject的对象能够处理所有错误的消息和代码。直接将消息输入至控制台: 3 */ 4 5 class errorObject{ 6 private $__error; 7 8 pubic function __construct($error){ 9 $this->__error = $error;10 }11 12 publi... 阅读全文
摘要:
遍历文件夹下的所有文件和子文件夹: <?phpfunction my_dir($dir){ $files =array(); if($hand = opendir($dir)){ while(($file = readdir($hand)) != false){ if($file != ".." && $file != '.'){ if(is_dir($dir ."/" .$file)){ $files[$file] = my_dir($dir ."/" .$file); ... 阅读全文