美文网首页
thinkphp3.2对数据库的增删改查

thinkphp3.2对数据库的增删改查

作者: 奔跑的兔子_ | 来源:发表于2018-05-04 14:56 被阅读0次

    参考:ThinkPHP3.2完全开发手册http://document.thinkphp.cn/manual_3_2.html
    增:

    //controller
    public function textInfo() {
            // echo $User = new Model(); // 实例化User对象
            $Text1 = M('Text1');
            $Text1->add(array('id'=>111,'content'=>555));
            $data = $Text1->select();
            echo(json_encode($data));
        }
    

    这里需要绑定模块


    image.png
    <?php
    namespace Home\Model;
    use Think\Model;
    class Text1Model extends Model{
    }
    ?>
    

    模块名字要与数据库表同名,例:数据库表叫text1,这里的模块文件就叫做Text1Model.php,类名与文件同名

    删:

     public function del_textInfo() {
            $User = M("User"); // 实例化User对象
            // 删除id=2的数据
            $arg = 'id=2';
            $data = $User->table('test')->where($arg)->delete();
            echo(json_encode($data));
        }
    

    改:与增相同,add改成save即可

    $Model = M('User');
    $data['id'] = 8;
    $data['name'] = '流年';
    $data['email'] = 'thinkphp@qq.com';
    $Model->data($data)->save();
    

    查询:

     public function test() {
            $User = M("User"); // 实例化User对象
            // 查找status值为1name值为think的用户数据 
            $arg = 'id='.$_GET['id'];
            $data = $User->table('test')->where($arg)->find();
            echo(json_encode($data));
        }
    

    注意:select()是返回二维数组,find()是返回一维数组!find是查询一条数据,想看所有数据只需把find改成select;


    相关文章

      网友评论

          本文标题:thinkphp3.2对数据库的增删改查

          本文链接:https://www.haomeiwen.com/subject/sgpdrftx.html