11 2021 档案
摘要:一、下载安装 wget http://download.redis.io/releases/redis-4.0.1.tar.gz tar xzf redis-4.0.1.tar.gz cd redis-4.0.1 make 二、运行 Redis服务 # src/redis-server redis.
阅读全文
摘要:1、github地址: https://github.com/microsoftarchive/redis 2、下载Redis-x64-3.0.504.msi并安装 3、进入redis安装目录,运行 redis-cli.exe keys * #获取所有的键 get key #获取某个键的值 4、进入
阅读全文
摘要:安装Git #使用dnf工具: dnf install git-all #查看Git版本 git --version 提示:git version 2.27.0 安装Composer 说明:是 PHP 用来管理依赖(dependency)关系的工具。你可以在自己的项目中声明所依赖的外部工具库(lib
阅读全文
摘要:一、临时关闭防火墙 #查看防火墙状态 systemctl status firewalld 如果Active后面是 inactive 表示已经是关闭状态了 #开启状态下临时关闭防火墙 systemctl stop firewalld #永久关闭防火墙 systemctl disable firewa
阅读全文
摘要:TP6中缓存的使用 使用缓存,需引入 cache类 use think\facade\Cache; 缓存配置:config/cache.php return [ 'default' => 'file', 'stores' => [ // 文件缓存 'file' => [ // 驱动方式 'type'
阅读全文
摘要:TP6中命令行操作 1、启动内置服务器 php think run //指定IP和端口 php think run -H tp.com -p 80 2、查看当前版本 php think version 3、快速生成应用 php think build demo 4、快速生成控制器 //生成index
阅读全文
摘要:TP6中请求的使用 一、请求的使用 //1、引入Request对象 use think\facade\Request; //方式1、构造方法注入 protected $request; public function __construct(Request $request) { $this->re
阅读全文
摘要:TP6模型操作 数据库的所有查询构造器方法模型中都可以支持,可以定义自己的方法, 所以也可以把模型看成是数据库的增强版 一、模型的定义 <?php namespace app\model; use think\Model; class UserModel extends Model { protec
阅读全文
摘要:TP6中数据库操作 要使用Db类必须使用门面方式(think\facade\Db)调用 use think\facade\Db; 一、数据库连接配置 配置文件位于,config/database.php 或者开发环境 位于根目录下的 .env 文件 APP_DEBUG = true [APP] DE
阅读全文
摘要:TP6中常用视图操作 第一步:安装模板引擎 composer require topthink/think-view 第二步:模板赋值和加载模板: 引入模板操作类: use think\facade\View; 模板赋值 // 模板变量赋值 View::assign('name','ThinkPHP
阅读全文
摘要:TP6中验证器的使用 一、定义验证器 方式1:在目录app目录下,生成 validate目录,然后创建相应的验证器。 方式2:通过命令行工具执行命令: php think make:validate User 刚生成的验证器,代码如下: <?php declare (strict_types = 1
阅读全文
摘要:TP6文件上传示例: 一、最简单的文件上传代码 html: <h3>TP6单文件上传</h3> <form action="/index.php/test_upload/uploadAct01" enctype="multipart/form-data" method="post"> <p>请选择文
阅读全文