當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Config::Reader方法代碼示例

本文整理匯總了PHP中core\Config::Reader方法的典型用法代碼示例。如果您正苦於以下問題:PHP Config::Reader方法的具體用法?PHP Config::Reader怎麽用?PHP Config::Reader使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在core\Config的用法示例。


在下文中一共展示了Config::Reader方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

 function __construct()
 {
     $driver = array("mysql" => "mysql:dbname=%s;host=%s", "oracle" => "oci:dbname=%s;host=%s;port=1521", "pgsql" => "pgsql:dbname=%s host=%s");
     try {
         $this->PDO = new PDO(sprintf($driver[Config::Reader("BD_DRIVE")], Config::Reader("BD_NAME"), Config::Reader("BD_HOST")), Config::Reader("BD_USER"), base64_decode(Config::Reader("BD_PASS")), array(PDO::ATTR_PERSISTENT => true, PDO::ATTR_TIMEOUT => 5, PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''));
     } catch (PDOException $e) {
         return json_encode(["data" => "Ha Ocurrido un error al conectarse (" . $e->getMessage() . ")"]);
     }
 }
開發者ID:lfjaimesb,項目名稱:sic,代碼行數:9,代碼來源:Database.php

示例2: procesar

 function procesar()
 {
     $c = "Control\\" . Config::Reader("control");
     if (class_exists($c, true)) {
         $funcion = Config::Reader("function");
         $control = new $c();
         $control->Run($funcion, explode("/", Config::Reader("parametros")));
     } else {
         echo json_encode(["data" => "Recurso no disponible"]);
     }
 }
開發者ID:lfjaimesb,項目名稱:sic,代碼行數:11,代碼來源:Dispatcher.php

示例3: before

 function before($funcion)
 {
     if ($funcion != "authenticate") {
         try {
             $secretKey = base64_decode(Config::Reader("SALT"));
             $header = apache_request_headers();
             $header["Authorization"] = trim(str_replace("Bearer", "", $header["Authorization"]));
             $jwt = JWT::decode($header["Authorization"], $secretKey, array('HS512'));
             $this->UserToken = $jwt;
         } catch (ExpiredException $e) {
             $this->Response["error"] = $e->getMessage();
             return false;
         }
     }
     return true;
 }
開發者ID:lfjaimesb,項目名稱:sic,代碼行數:16,代碼來源:App.php

示例4: authenticate

 function authenticate()
 {
     $usuario = $this->Usuarios->findByUsuario($this->Post["usuario"]);
     if (!empty($usuario)) {
         if (password_verify($this->Post["password"], $usuario["pass"])) {
             unset($usuario["pass"]);
             $secretKey = base64_decode(Config::Reader("SALT"));
             $data = ['iss' => SITE, 'aud' => SITE, 'iat' => time(), 'exp' => time() + 60 * 60 * 24 * 7, 'sub' => 'usuario', 'admin' => true, 'data' => $usuario];
             $jwt = JWT::encode($data, $secretKey, 'HS512');
             $this->Response = ['token' => $jwt];
         } else {
             $this->Response = ["error" => "La contraseña o usuario incorrecto"];
         }
     } else {
         $this->Response = ["error" => "El usuario no existe"];
     }
 }
開發者ID:lfjaimesb,項目名稱:sic,代碼行數:17,代碼來源:UsuariosControl.php

示例5: ucwords

 function __construct()
 {
     $this->NameForm = ucwords(substr(Config::Reader('control'), 0, -7)) . ucwords(Config::Reader('function'));
 }
開發者ID:lfjaimesb,項目名稱:sic,代碼行數:4,代碼來源:Plugins.php


注:本文中的core\Config::Reader方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。