摘要:
Ubuntu版本:20.04.1 LTS PHP版本:8.3.4 下载地址: https://www.php.net/downloads 官方文档:https://www.php.net/manual/en/install.unix.nginx.php 上传目录:/usr/local/src 安装目 阅读全文
摘要:
Ubuntu版本:20.04.1 LTS Nginx版本:1.22.0 下载地址: https://nginx.org/en/download.html 上传目录:/usr/local/src 安装目录:/usr/local/nginx 源码安装 # 查看操作系统cat /etc/os-releas 阅读全文
摘要:
Ubuntu版本:20.04.1 LTS Redis版本:7.0.3 下载地址:https://redis.io/download 上传目录:/usr/local/src 安装目录:/usr/local/redis 源码安装 # 进入安装包目录 cd /usr/local/src # 解压 tar 阅读全文
摘要:
# 进入安装包解压目录 cd /usr/local/src/php-8.0.0/ # 进入扩展目录 cd ext/gd # 编译 phpize # 配置 ./configure --with-php-config=/usr/local/php/bin/php-config # 安装 make && 阅读全文
摘要:
下载地址:https://www.python.org/downloads/source/ Gzipped source tarball 上传目录:/usr/local/src 安装目录:/usr/local/python3 ## 源码安装 # 进入源码包目录 cd /usr/local/src # 阅读全文
摘要:
Storage 类,操作目录为/storage/app 阅读全文
摘要:
# 在存储过程中,变量赋值失败 declare parent text; select parent into Parent where id = 1; select Parent; 查询的字段不能和变量名称一样,MySQL不区分大小写 # MSVCP140.dll 不存在 安装 Microsoft 阅读全文
摘要:
方法一 SELECT id+1 AS ID FROM table WHERE id+1 not in (SELECT id FROM table); 阅读全文
摘要:
#默认配置 { "default_line_ending": "unix", "ensure_newline_at_eof_on_save": true, "fade_fold_buttons": false, "font_size": 12, "hlight_modified_tabs": tru 阅读全文
摘要:
#使用PHP输出json数据给js变量 SyntaxError: unexpected token: identifier const data = <?php echo json_encode($data); ?>; 申明变量时,使用 let 阅读全文