Blogger Information
Blog 20
fans 0
comment 0
visits 8113
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
thinkphp下载、安装、配置/数据库 增删改查
P粉191340380
Original
367 people have browsed it

/config/app.php文件

  1. return [
  2. // 应用地址
  3. 'app_host' => env('app.host', ''),
  4. // 应用的命名空间
  5. 'app_namespace' => '',
  6. // 是否启用路由
  7. 'with_route' => true,
  8. // 默认应用
  9. 'default_app' => 'index',
  10. // 默认时区
  11. 'default_timezone' => 'Asia/Shanghai',
  12. // 应用映射(自动多应用模式有效)
  13. 'app_map' => [],
  14. // 域名绑定(自动多应用模式有效)
  15. 'domain_bind' => [],
  16. // 禁止URL访问的应用列表(自动多应用模式有效)
  17. 'deny_app_list' => [],
  18. // 异常页面的模板文件
  19. 'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
  20. // 错误显示信息,非调试模式有效
  21. 'error_message' => '页面错误!请稍后再试~',
  22. // 显示错误信息
  23. 'show_error_msg' => true,
  24. ];

/config/database.php 文件

  1. <?php
  2. return [
  3. // 默认使用的数据库连接配置
  4. 'default' => env('database.driver', 'mysql'),
  5. // 自定义时间查询规则
  6. 'time_query_rule' => [],
  7. // 自动写入时间戳字段
  8. // true为自动识别类型 false关闭
  9. // 字符串则明确指定时间字段类型 支持 int timestamp datetime date
  10. 'auto_timestamp' => true,
  11. // 时间字段取出后的默认时间格式
  12. 'datetime_format' => 'Y-m-d H:i:s',
  13. // 时间字段配置 配置格式:create_time,update_time
  14. 'datetime_field' => '',
  15. // 数据库连接配置信息
  16. 'connections' => [
  17. 'mysql' => [
  18. // 数据库类型
  19. 'type' => env('database.type', 'mysql'),
  20. // 服务器地址
  21. 'hostname' => env('database.hostname', '127.0.0.1'),
  22. // 数据库名
  23. 'database' => env('database.database', 'mohonghui'),
  24. // 用户名
  25. 'username' => env('database.username', 'root'),
  26. // 密码
  27. 'password' => env('database.password', 'root'),
  28. // 端口
  29. 'hostport' => env('database.hostport', '3306'),
  30. // 数据库连接参数
  31. 'params' => [],
  32. // 数据库编码默认采用utf8
  33. 'charset' => env('database.charset', 'utf8'),
  34. // 数据库表前缀
  35. 'prefix' => env('database.prefix', ''),
  36. // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
  37. 'deploy' => 0,
  38. // 数据库读写是否分离 主从式有效
  39. 'rw_separate' => false,
  40. // 读写分离后 主服务器数量
  41. 'master_num' => 1,
  42. // 指定从服务器序号
  43. 'slave_no' => '',
  44. // 是否严格检查字段是否存在
  45. 'fields_strict' => true,
  46. // 是否需要断线重连
  47. 'break_reconnect' => false,
  48. // 监听SQL
  49. 'trigger_sql' => env('app_debug', true),
  50. // 开启字段缓存
  51. 'fields_cache' => false,
  52. ],
  53. ],
  54. ];

数据库操作:增删查改

引入DB门面类
  1. use think\facade\Db;
1.查询单条数据 find
  1. $ret = Db::table('mhh_user')->where('uid',2)->find();
  2. print_r($ret);
2.添加数据 insert
  1. $data = [
  2. 'nickname' => '小编1';
  3. 'phone' => 18811119999;
  4. 'password' => md5(123456);
  5. 'add_time' => time();
  6. 'last_time' => time()
  7. ];
  8. $ret = Db::table('mhh_user')->insert($data);
  9. print_r($ret);
3.修改数据 update
  1. $data = [
  2. 'password' => md5(phpcn);
  3. 'last_time' => time()
  4. ];
  5. $ret = Db::table('mhh_user')->where('uid',8)->update($data);
  6. print_r($ret);
4.删除数据 delete
  1. $ret = Db::table('mhh_user')->where('uid',2)->delete();
  2. print_r($ret);
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post