php我的第一个MVC

1、入口文件index.php

<?php
function dd($params)
{
    echo "<pre>";
    var_dump($params);
    echo "</pre>";
    die;
}

function responseSuccess($data, $message = '')
{
    header('Content-type: application/json');
    echo json_encode([
        'status' => 'ok',
        'message' => $message,
        'data' => $data
    ]);
    exit();
}

function responseError($message, $data = '')
{
    header('Content-type: application/json');
    echo json_encode([
        'status' => 'error',
        'message' => $message,
        'data' => $data
    ]);
    exit();
}

define('ROOT_DIR', dirname(__FILE__));//结果是demo_05

// index.php?controller=demo&action=show
$controller = isset($_GET['controller']) ? $_GET['controller'] : ''; // demo
$action = isset($_GET['action']) ? $_GET['action'] : ''; // show

if (!$controller) {
    dd('controller不可为空');
}
if (!$action) {
    dd('action不可为空');
}
$className = sprintf('%sController', $controller);
$action = sprintf('%sAction', $action);

$controllerPath = sprintf('%s/controller/%s.php', ROOT_DIR, $className);//文件的绝对路径
if (!file_exists($controllerPath)) {
    dd('文件不存在');
}
require_once $controllerPath;//引入demoController.php文件
if (!class_exists($className)) {
    dd('类不存在');
}
$class = new $className();
if (!method_exists($class, $action)) {
    dd('方法不存在');
}
$class->$action();

2.demoController.php

<?php
require_once ROOT_DIR . '/model/demoModel.php';

/**
* demoController
*/
class demoController
{
    public function showAction()
    {
        require_once ROOT_DIR . '/view/demo.html';
    }

    public function getNameAction()
    {
        $id = isset($_GET['id']) ? (int)$_GET['id'] : 0;
        $name = '';
        if ($id > 0) {
            $model = new demoModel();
            $name = $model->getName($id);
        }
        header('Content-type: application/json');
        echo json_encode([
            'status' => 'ok',
            'message' => '',
            'data' => [
                'name' => $name
            ]
        ]);
    }

    public function listAction()
    {
        $model = new demoModel();
        $list = $model->getList();
        require_once ROOT_DIR . '/view/list.html';
    }

    public function editAction()
    {
        $id = isset($_GET['id']) ? (int)$_GET['id'] : 0;
        if ($id < 1) {
            echo 'ID不可小于1';
            exit();
        }
        $model = new demoModel();
        $user = $model->getUser($id);
        if (!$user) {
            echo '用户不存在';
            exit();
        }
        require_once ROOT_DIR . '/view/edit.html';
    }

    public function doDeleteAction()
    {
        $id = isset($_POST['id']) ? (int)$_POST['id'] : 0;
        if ($id < 1) {
            responseError('ID不可小于1');
        }
        $model = new demoModel();
        $result = $model->remove($id);
        if ($result) {
            responseSuccess([]);
        }
        responseError('删除失败');
    }
    //用于确定是否修改
    public function doEditAction()
    {
        $id = isset($_POST['id']) ? (int)$_POST['id'] : 0;
        $name = isset($_POST['name']) ? (string)$_POST['name'] : '';
        $sex = isset($_POST['sex']) ? (string)$_POST['sex'] : 'male';
        $age = isset($_POST['age']) ? (int)$_POST['age'] : 0;
        $description = isset($_POST['description']) ? (string)$_POST['description'] : '';
        if ($id < 1) {
            responseError('ID不可小于1');
        }
        if (!$name) {
            responseError('姓名不可为空');
        }
        if (!in_array($sex, ['male', 'female'])) {
            responseError('性别不存在');
        }
        if ($age < 1) {
            responseError('年龄不可小于1');
        }
        if (!$description) {
            responseError('描述不可为空');
        }
        $model = new demoModel();
        $result = $model->update($id, [
            'name' => $name,
            'sex' => $sex,
            'age' => $age,
            'description' => $description
        ]);
        if ($result) {
            responseSuccess([]);
        }
        responseError('更新失败');
    }
        public function addAction()
    {
         require_once ROOT_DIR . '/view/add.html';
    }
    public function doAddAction()
    {
        $name = isset($_POST['name']) ? (string)$_POST['name'] : '';
        $sex = isset($_POST['sex']) ? (string)$_POST['sex'] : 'male';
        $age = isset($_POST['age']) ? (int)$_POST['age'] : 0;
        $description = isset($_POST['description']) ? (string)$_POST['description'] : '';
        if (!$name) {
            responseError('姓名不可为空');
        }
        if (!$sex) {
            responseError('性别不存在');
        }
        if ($age < 1) {
            responseError('年龄不可小于1');
        }
        if (!$description) {
            responseError('描述不可为空');
        }
        $model = new demoModel();
        $result = $model->insertInfo([
            'name' => $name,
            'sex' => $sex,
            'age' => $age,
            'description' => $description
        ]);
        if ($result) {
            responseSuccess([]);
        }
        responseError('添加失败');
    }
}

3、demoModel.php

<?php
/**
* demoModel
*/
class demoModel
{
    protected $_connect;
    protected $_table = 'db_demo';

    function __construct()
    {
        $config = [
            'host' => '127.0.0.1',
            'account' => 'root',
            'password' => '021104',
            'dbName' => 'test',
            'charset' => 'utf8'
        ];
        $this->_connect = new mysqli($config['host'], $config['account'], $config['password'], $config['dbName']);
        if ($this->_connect->connect_error) {
            dd('数据库链接失败');
        }
        $this->_connect->set_charset($config['charset']);
    }

    public function getName($id)
    {
        $sql = sprintf('SELECT * FROM `%s` WHERE `id` = %d', $this->_table, $id);
        $res = $this->_connect->query($sql);
        if (!$res) {
            return '';
        }
        $result = [];
        while ($row = $res->fetch_object()) {
            $result[] = $row;
        }
        $row = reset($result);
        return $row->name;
    }

    public function getList()
    {
        $sql = sprintf('SELECT * FROM `%s`', $this->_table);
        $res = $this->_connect->query($sql);
        if (!$res) {
            return '';
        }
        $result = [];
        while ($row = $res->fetch_object()) {
            $result[] = $row;
        }
        return $result;
    }

    public function getUser($id)
    {
        $sql = sprintf('SELECT * FROM `%s` WHERE `id` = %d', $this->_table, $id);
        $res = $this->_connect->query($sql);
        if (!$res) {
            return '';
        }
        $result = [];
        while ($row = $res->fetch_object()) {
            $result[] = $row;
        }
        return reset($result);
    }

    public function update($id, array $params)
    {
        $sql = sprintf(
            'UPDATE `%s` SET `name` = "%s", `sex` = "%s", `age` = %d, `description` = "%s" WHERE `id` = %d',
            $this->_table,
            $params['name'],
            $params['sex'],
            $params['age'],
            $params['description'],
            $id
        );
        $res = $this->_connect->query($sql);
        return $res !== false;
    }
    public function insertInfo(array $params){
        $sql = sprintf('INSERT INTO `%s` (`name`,`sex`,`age`,`description`) VALUES ("%s","%s",%d,"%s")',
            $this->_table,
            $params['name'],
            $params['sex'],
            $params['age'],
            $params['description']
            );
        $res = $this->_connect->query($sql);
        return $res !== false;
    }
    public function remove($id)
    {
        $sql = sprintf('DELETE FROM `%s` WHERE `id` = %d', $this->_table, $id);
        $res = $this->_connect->query($sql);
        return $res !== false;
    }
}

controller层负责拿数据,只关心结果,model层是具体操作数据库的。
目录结构如下:


Paste_Image.png

add.html


Paste_Image.png

edit.html
Paste_Image.png

参数params(将form的name作为键,value作为值)中用了$.post,请求到了.php文件中去,即可用超级全局变量$_POST来调用

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容