Blogger Information
Blog 37
fans 0
comment 0
visits 14223
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
thinkphp下载、安装、配置
秋闲独醉
Original
887 people have browsed it

1、下载thinkPHP

在已经安装composer下运行命令,composer create-project topthink/think thinkphp6,安装在根目录上

2、搭建thinkphp项目

下载完thinkphp,在wampserver服务软件上配置,打开httpd-vhosts.conf,加上

  1. <VirtualHost *:80>
  2. ServerName www.thinkphp6.io
  3. ServerAlias www.thinkphp6.io
  4. DocumentRoot "${INSTALL_DIR}/www/thinkphp6/public"
  5. <Directory "${INSTALL_DIR}/www/thinkphp6/public/">
  6. Options +Indexes +Includes +FollowSymLinks +MultiViews
  7. AllowOverride All
  8. Require local
  9. </Directory>
  10. </VirtualHost>

打开电脑hosts文件,(C:\Windows\System32\drivers\etc\hosts),通过管理员的权限运行cmd,
配置完,就可以在浏览器上输入www.thinkphp6.io/index.php.访问

3、配置 /config/app.php文件, /config/database.php文件

  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 应用设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 应用地址
  7. 'app_host' => env('app.host', ''),
  8. // 应用的命名空间
  9. 'app_namespace' => '',
  10. // 是否启用路由
  11. 'with_route' => true,
  12. // 默认应用
  13. 'default_app' => 'index',
  14. // 默认时区
  15. 'default_timezone' => 'Asia/Shanghai',
  16. // 应用映射(自动多应用模式有效)
  17. 'app_map' => [],
  18. // 域名绑定(自动多应用模式有效)
  19. 'domain_bind' => [],
  20. // 禁止URL访问的应用列表(自动多应用模式有效)
  21. 'deny_app_list' => [],
  22. // 异常页面的模板文件
  23. 'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
  24. // 错误显示信息,非调试模式有效
  25. 'error_message' => '页面错误!请稍后再试~',
  26. // 显示错误信息 默认是false
  27. 'show_error_msg' => true,
  28. ];
  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', 'thinkphp'),
  24. // 用户名
  25. 'username' => env('database.username', 'user'),
  26. // 密码
  27. 'password' => env('database.password', '123456'),
  28. // 端口
  29. 'hostport' => env('database.hostport', '3308'),
  30. // 数据库连接参数
  31. 'params' => [],
  32. // 数据库编码默认采用utf8
  33. 'charset' => env('database.charset', 'utf8'),
  34. // 数据库表前缀
  35. 'prefix' => env('database.prefix', 'think_'),
  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. 'mysql_two' => [
  55. // 数据库类型
  56. 'type' => env('database.type', 'mysql'),
  57. // 服务器地址
  58. 'hostname' => env('database.hostname', '127.0.0.1'),
  59. // 数据库名
  60. 'database' => env('database.database', ''),
  61. // 用户名
  62. 'username' => env('database.username', 'root'),
  63. // 密码
  64. 'password' => env('database.password', ''),
  65. // 端口
  66. 'hostport' => env('database.hostport', '3306'),
  67. // 数据库连接参数
  68. 'params' => [],
  69. // 数据库编码默认采用utf8
  70. 'charset' => env('database.charset', 'utf8'),
  71. // 数据库表前缀
  72. 'prefix' => env('database.prefix', ''),
  73. // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
  74. 'deploy' => 0,
  75. // 数据库读写是否分离 主从式有效
  76. 'rw_separate' => false,
  77. // 读写分离后 主服务器数量
  78. 'master_num' => 1,
  79. // 指定从服务器序号
  80. 'slave_no' => '',
  81. // 是否严格检查字段是否存在
  82. 'fields_strict' => true,
  83. // 是否需要断线重连
  84. 'break_reconnect' => false,
  85. // 监听SQL
  86. 'trigger_sql' => env('app_debug', true),
  87. // 开启字段缓存
  88. 'fields_cache' => false,
  89. ],
  90. ],
  91. ];

4、数据库操作:增删查改

  1. <?php
  2. namespace app\controller;
  3. use app\BaseController;
  4. use think\facade\Db;
  5. use think\facade\Request;
  6. class Index extends BaseController
  7. {
  8. public function index()
  9. {
  10. // return '<style type="text/css">*{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }</style><div style="padding: 24px 48px;"> <h1>:) </h1><p> ThinkPHP V' . \think\facade\App::version() . '<br/><span style="font-size:30px;">16载初心不改 - 你值得信赖的PHP框架</span></p><span style="font-size:25px;">[ V6.0 版本由 <a href="https://www.yisu.com/" target="yisu">亿速云</a> 独家赞助发布 ]</span></div><script type="text/javascript" src="https://e.topthink.com/Public/static/client.js"></script><think id="ee9b1aa918103c4fc"></think>';
  11. // $result = Db::table('think_user')->where('uid','>',1)->select();
  12. // $result = Db::table('think_user')->where('uid', 10)->find();
  13. // $result = Db::table('think_user')->where('uid', 10)->findOrFail();
  14. // $result = Db::table('think_user')->where('uid', 10)->findOrEmpty();
  15. $table = Db::table('think_user');
  16. // $result = $table->where('status',0)->selectOrFail()->toArray();
  17. // $result = $table->where('uid',2)->value('nickname');
  18. // $result = $table->where('status',1)->column('nickname,phone');
  19. // $result = Db::table('think_user')->where('status',1)->column('*','uid');
  20. // $result = Db::table('think_user')->where('uid','>',7)->chunk(2,function($users){
  21. // foreach($users as $key =>$value){
  22. // $value['status'] = 0;
  23. // }
  24. // });
  25. // $cursor = Db::table('think_user')->where('status',1)->cursor();
  26. // foreach($cursor as $key => $value){
  27. // echo $value['nickname'];
  28. // }
  29. // $data = ['nickname'=>'Rom','phone'=>'122345678912'];
  30. // $result = Db::table('think_user')->save($data);
  31. // $result = Db::table('think_user')->insertGetId($data);
  32. // $result = Db::table('think_user')->insert($data);
  33. // $data = [
  34. // ['nickname'=>'Rom','phone'=>'122345678912'],
  35. // ['nickname'=>'Wom','phone'=>'122345678912'],
  36. // ['nickname'=>'Fom','phone'=>'122345678912'],
  37. // ['uid'=>12,'nickname'=>'Bom','phone'=>'122345678912'],
  38. // ];
  39. // $result = Db::table('think_user')
  40. // ->limit(2)
  41. // ->insertAll($data);
  42. // $result = Db::table('think_user')
  43. // ->where('uid',23)
  44. // ->useSoftDelete('delete_time',time())
  45. // ->fetchSql(true)
  46. // ->delete();
  47. // $result = $table->select();
  48. // $result->isEmpty();
  49. // print_r($result);
  50. // $result = Db::table('think_user')->select();
  51. //
  52. // print_r($result);
  53. }
  54. }
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!