批改状态:未批改
老师批语:
tp6安装
composer create-project topthink/think tp
安装view模块
composer require topthink/think-view
数据库操作
<?phpnamespace app\controller;use app\BaseController;use think\facade\Db;class Login extends BaseController{public function index(){Db::name('admin')->where('id',1)->find();Db::name('admin')->delete(1);Db::name('admin')->insert(['username'=>'root']);Db::name('admin')->where('id',1)->update(['username'=>'admin']);}}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号