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

溫馨提示×

溫馨提示×

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

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

關于PHP中DIY系列之自定義配置和路由的案例

發布時間:2020-07-08 09:24:37 來源:億速云 閱讀:191 作者:清晨 欄目:編程語言

小編給大家分享一下關于PHP中DIY系列之自定義配置和路由的案例,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

關于PHP中DIY系列之自定義配置和路由的案例


我們已經開發完成,但我們還需要更多。比如自定義配置和路由。

app文件夾下新建Config.php

<?php/**
 *自定義配置
 */return [
    'debug' => false,
    'route' => [
        '' => 'demo/welcome',
        'test' => 'demo/test',
    ],];

新建DemoController(app/Https/Controllers目錄下)

<?php/**
 * Demo控制器
 */namespace App\Https\Controllers;use Library\Https\Controller;class DemoController extends Controller{
    public function welcome($params)
    {
        return $this->response->json(['hello' => 'welcome']);
    }

    public function test($params)
    {
        return $this->response->json($params);
    }}

修改入口文件index.php,加入加載配置代碼:

... 省略代碼
// 加載配置
$config = require SF_LIBRARY_PATH.'Config.php';
$appConfig = file_exists($appConfigPath = SF_APP_PATH.'Config.php') ? require $appConfigPath : [];
$config = array_merge($config, $appConfig);
$config['debug'] = ($config['debug']?? SF_DEBUG);
...省略代碼

解析路由部分也加入自定義路由處理:

// Application...省略代碼
public function handleRequest(Request $request){
    $route = $request->resolve($this->_config['route']??[]);

    $response = $request->runAction($route);
    /**
     * 執行結果賦值給$response->data,并返回給response對象
     */
    if ($response instanceof Response) {
        return $response;
    }

    throw new SaiException('Content format error');}
    ...省略代碼
    public function resolve($route=[])  {  
    $this->route = $route;  // 自定義路由  
    return $this->getPathUrl();  }
    // Request
    ...省略代碼public function runAction($route){
    if (array_key_exists($route, $this->_route)) {
        $route = $this->_route[$route];
    }

    $match = explode('/', $route);
    $match = array_filter($match);
    ...省略代碼

保存后打開瀏覽器看看效果:

關于PHP中DIY系列之自定義配置和路由的案例

關于PHP中DIY系列之自定義配置和路由的案例

這里雖然有自定義路由,但是我們有時候需要禁止默認路由,所以我們不妨增加配置參數defaultRoute,用來控制是否開啟默認路由。

我們修改一下路由解析的代碼:

//Application...省略代碼
public function handleRequest(Request $request){
    $route = $request->resolve($this->_config['route']??[]);

    $response = $request->runAction($route, $this->_config['defaultRoute']??true);
    /**
     * 執行結果賦值給$response->data,并返回給response對象
     */
    if ($response instanceof Response) {
        return $response;
    }

    throw new SaiException('Content format error');}
    ...省略代碼
...省略代碼
public function runAction($route, $defaultRoute){
    if (array_key_exists($route, $this->_route)) {
        $route = $this->_route[$route];
    } elseif (!$defaultRoute) {
        throw new NotFoundException("route not found:".$route);
    }
    ...省略代碼

我們在app下面的Config,加入:

return [
    'debug' => false,
    'route' => [
        '' => 'demo/welcome',
        'test' => 'demo/test',
    ],
    'defaultRoute' => false,];

我們打開瀏覽器輸入saif.com/login

報錯如下:

Array
(
    [line] => 137
    [msg] => route not found:login
    [code] => 404
    [file] => library/Https/Request.php
)

看完了這篇文章,相信你對關于PHP中DIY系列之自定義配置和路由的案例有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

林甸县| 保山市| 清河县| 桑植县| 石家庄市| 东丽区| 车致| 留坝县| 洪江市| 繁峙县| 奎屯市| 南京市| 梁平县| 樟树市| 遵义县| 丹东市| 罗山县| 从江县| 海原县| 逊克县| 诸暨市| 乌兰察布市| 新巴尔虎右旗| 资中县| 金川县| 图们市| 福清市| 新野县| 雷州市| 邹城市| 灌阳县| 南京市| 曲周县| 璧山县| 依兰县| 金沙县| 临江市| 丹棱县| 延边| 肇庆市| 英超|