91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP面向對象中的命令模式的構成以及作用

發布時間:2021-09-03 22:54:49 來源:億速云 閱讀:145 作者:chen 欄目:開發技術

本篇內容介紹了“PHP面向對象中的命令模式的構成以及作用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

這個模式主要由 命令類、用戶請求數據類、業務邏輯類、命令類工廠類及調用類構成,各個類的作用概括如下:

1、命令類:調用用戶請求數據類和業務邏輯類;

2、用戶請求數據類:獲取用戶請求數據及保存后臺處理后返回的結果;

3、業務邏輯類:如以下的示例中驗證用戶登陸信息是否正確的功能等;

4、命令工廠類(我自己取的名字,哈哈):生成命令類的實例,這個類第一次看的時候我覺得有點屌,當然看了幾遍了還是覺得很屌 :);

5、調用類:調用命令類,生成視圖;

直接看代碼:

//命令類
abstract class Command {
  abstract function execute(CommandContext $context);
}

class LoginCommand extends Command{       //處理用戶登陸信息的命令類
  function execute (CommandCotext $context){    //CommandCotext 是一個處理用戶請求數據和后臺回饋數據的類
    $manager = Registry::getAccessManager();  //原文代碼中并沒有具體的實現,但說明了這是一個處理用戶登陸信息的業務邏輯類
    $user = $context->get('username');
    $pass = $context->get('pass');
    $user_obj = $manager->login($user,$pass);
    if(is_null($user_obj)){
      $context->setError($manager->getError);
      return false;
    }
    $context->addParam('user',$user_obj);
    return true;               //用戶登陸成功返回true
  }
}

class FeedbackCommand extends Command{        //發送郵件的命令類
  function execute(CommandContext $context){
    $msgSystem = Registry::getMessageSystem();
    $email = $context->get('email');
    $msg = $context->get('msg');
    $topic = $context->get('topci');
    $result = $msgSystem->send($email,$msg,$topic);
    if(!$result){
      $context->setError($msgSystem->getError());
      return false;
    }
    return true;
  }
}

//用戶請求數據類  
class CommandContext {
  private $params = array();
  private $error = '';

  function __construct (){
  $this->params = $_REQUEST;
}

function addParam($key,$val){
  $this->params[$key] = $val;
}

function get($key){
  return $this->params[$key];
}

function setError($error){
  $this->error = $error;
}

function getError(){
  return $this->error;
}
}


//命令類工廠,這個類根據用戶請求數據中的action來生成命令類
class CommandNotFoundException extends Exception {}

class CommandFactory {
  private static $dir = 'commands';

  static function getCommand($action='Default'){
    if(preg_match('/\w',$action)){
      throw new Exception("illegal characters in action");
    }
    $class = UCFirst(strtolower($action))."Command";
    $file = self::$dir.DIRECTORY_SEPARATOR."{$class}.php"; //DIRECTORY_SEPARATOR代表'/',這是一個命令類文件的路徑
    if(!file_exists($file)){
      throw new CommandNotFoundException("could not find '$file'");
    }
    require_once($file);
    if(!class_exists($class)){
      throw new CommandNotFoundException("no '$class' class located");
    }
    $cmd = new $class();
    return $cmd;
  }
}

//調用者類,相當于一個司令部它統籌所有的資源
class Controller{
  private $context;
  function __construct(){
    $this->context = new CommandContext();  //用戶請求數據
  }
  function getContext(){
    return $this->context;
  }

  function process(){
    $cmd = CommandFactory::getCommand($this->context->get('action'));    //通過命令工廠類來獲取命令類
    if(!$comd->execute($this->context)){                      
      //處理失敗
    } else {
      //成功
      // 分發視圖
    }
  }
}

// 客戶端
$controller = new Controller();
//偽造用戶請求,真實的場景中這些參數應該是通過post或get的方式獲取的,貌似又廢話了:)
$context = $controller->getContext();
$context->addParam('action','login');
$context->addParam('username','bob');
$context->addParam('pass','tiddles');
$controller->process();

“PHP面向對象中的命令模式的構成以及作用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

赣榆县| 五大连池市| 平安县| 虎林市| 民县| 和静县| 巫山县| 滕州市| 武强县| 龙南县| 湟源县| 乐亭县| 林州市| 惠州市| 天峻县| 阿拉尔市| 偃师市| 巴东县| 水城县| 玉溪市| 武清区| 精河县| 波密县| 丹寨县| 马山县| 内黄县| 阿拉善盟| 怀安县| 竹北市| 鄂州市| 台州市| 阿克陶县| 普格县| 遂昌县| 阿勒泰市| 德安县| 景谷| 韶山市| 桑日县| 海盐县| 康定县|