將smarty安裝到MVC架構中

首先是composer.jsonphp

{
  "require": {
    "smarty/smarty": "^3.1"
  },
  // 自動加載
  // 能夠在composer.json的autoload字段找那個添加本身的autoloader
  "autoload": {
    "psr-4": {
      "App\\Controllers\\": "Controllers/",
      "App\\Models\\": "Models/",
      "Tools\\": "Tools/"
    }
  }
}

Models/Users.phphtml

<?php
// model層數據庫操做演示
namespace App\Models;

class Users
{
    // 數據存入數據庫演示
    public function store()
    {
        echo 'store into database';
    }

    // 查詢數據庫演示
    public function getUsername()
    {
        // 查詢數據庫
        return 'test-data';
    }
}

Controllers/UserController.php數據庫

<?php
namespace App\Controllers;

use App\Models\Users;
use Smarty;

class UserController extends Smarty
{
    public function create()
    {
        echo 'User create';
    }

    public function getUser()
    {
        // 經過Model查詢數據
        $userModel = new Users;
        $username = $userModel->getUsername();

        echo 'username:'.$username;exit;

        $this->setTemplateDir(dirname(__DIR__) . '/Views/');
        $this->setCompileDir(dirname(__DIR__) . '/runtime/Compile/');

        // 將$username顯示在對應的一個HTML文件當中,而且顯示出來
        // 表現層 user/user.html
        // 將變量發送給模板(html文件)
        $this->assign('username', $username);
        $this->assign('age', 20);
        // 顯示模板
        $this->display('user/user.html');
    }
}

Views/user/user.htmljson

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <h2>
        {$username}
    </h2>
    <h3>
        {$age}
    </h3>
</body>
</html>

在本機瀏覽器中訪問瀏覽器

相關文章
相關標籤/搜索