think php 删除

2021/8/14 22:05:57

本文主要是介绍think php 删除,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

表单页面

  <a href="/examtest/test/edit/id/{$v['id']}">修改</a>
                    <a href="/examtest/test/delete/id/{$v['id']}" onclick=" return confirm('您确定要删除吗?')">删除</a>

、、、、、、、、、、、、、、、控制器页面

 public function delete($id)
    {
        //
        $result = ExamTest::deleteIofo($id);
        if (!$result) {
            $this->error('删除失败', '/examtest/test/index');
        }
        $this->success('删除成功', '/examtest/test/index');

    }

、、、、、、、、、、、、、、、、、、、、、模型页面

//删除
    public static function deleteIofo($id)
    {
        return self::destroy($id);
    }

 



这篇关于think php 删除的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程