程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Minor【 PHP框架】2.第一個應用 Hello World,minorhello

Minor【 PHP框架】2.第一個應用 Hello World,minorhello

編輯:關於PHP編程

Minor【 PHP框架】2.第一個應用 Hello World,minorhello


2.1 Hello World

  2.1.1 配置路由

  在app/Config/routes.php文件中添加如下配置:

return [
   ...
    '/helloworld'            =>  [
        'name'                =>    'helloworld',
        'controller'        =>    'App\Modules\Demo\Controller\HelloController',
        'action'            =>    'hello'
    ],
];

  這樣配置之後當我們在浏覽器中訪問http://xxx.xxx.xxx/helloworld時就會執行App\Modules\Demo\Controller\HelloController裡的hello方法

  2.1.2 創建控制器

  在app/Modules文件夾下創建文件夾: Demo/Controller/,然後創建文件HelloController.php,然後在文件中寫:

<?php
namespace App\Modules\Demo\Controller;
use Minor\Controller\Controller;
class HelloController extends Controller
{
    public function hello()
    {return View::render('Demo:Hello:hello.php', ['name' => 'World']);
    }
}    

  2.1.3 創建視圖文件

  在app/Modules/Demo/文件夾下創建文件夾/Tpl/Hello/然後創建hello.php:

Hello <?= $name?>

  然後在浏覽器中訪問:http://xxx.xxx.xxx/helloworld就可以看到Hello World了

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved