会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
绿·静·風
博客园
首页
新随笔
联系
订阅
管理
2022年2月24日
Ubuntu 安装 PHP
摘要: 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 安装目
阅读全文
posted @ 2022-02-24 10:34 绿静風
阅读(1148)
评论(0)
推荐(0)
2022年2月23日
Ubuntu 安装 Nginx
摘要: 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
阅读全文
posted @ 2022-02-23 20:12 绿静風
阅读(222)
评论(0)
推荐(0)
Ubuntu 安装 Redis
摘要: Ubuntu版本:20.04.1 LTS Redis版本:7.0.3 下载地址:https://redis.io/download 上传目录:/usr/local/src 安装目录:/usr/local/redis 源码安装 # 进入安装包目录 cd /usr/local/src # 解压 tar
阅读全文
posted @ 2022-02-23 11:20 绿静風
阅读(76)
评论(0)
推荐(0)
2020年12月17日
php 安装 自带扩展
摘要: # 进入安装包解压目录 cd /usr/local/src/php-8.0.0/ # 进入扩展目录 cd ext/gd # 编译 phpize # 配置 ./configure --with-php-config=/usr/local/php/bin/php-config # 安装 make &&
阅读全文
posted @ 2020-12-17 18:43 绿静風
阅读(169)
评论(0)
推荐(0)
2020年12月14日
Centos 安装 Python3
摘要: 下载地址:https://www.python.org/downloads/source/ Gzipped source tarball 上传目录:/usr/local/src 安装目录:/usr/local/python3 ## 源码安装 # 进入源码包目录 cd /usr/local/src #
阅读全文
posted @ 2020-12-14 19:46 绿静風
阅读(57)
评论(0)
推荐(0)
2020年5月27日
问题集锦 ~ Laravel
摘要: Storage 类,操作目录为/storage/app
阅读全文
posted @ 2020-05-27 09:52 绿静風
阅读(68)
评论(0)
推荐(0)
2020年4月6日
问题集锦 ~ MySQL
摘要: # 在存储过程中,变量赋值失败 declare parent text; select parent into Parent where id = 1; select Parent; 查询的字段不能和变量名称一样,MySQL不区分大小写 # MSVCP140.dll 不存在 安装 Microsoft
阅读全文
posted @ 2020-04-06 20:02 绿静風
阅读(112)
评论(0)
推荐(0)
2020年4月2日
查询自增ID断点的地方
摘要: 方法一 SELECT id+1 AS ID FROM table WHERE id+1 not in (SELECT id FROM table);
阅读全文
posted @ 2020-04-02 18:47 绿静風
阅读(208)
评论(0)
推荐(0)
2020年3月17日
Sublime Text3 插件
摘要: #默认配置 { "default_line_ending": "unix", "ensure_newline_at_eof_on_save": true, "fade_fold_buttons": false, "font_size": 12, "hlight_modified_tabs": tru
阅读全文
posted @ 2020-03-17 14:21 绿静風
阅读(137)
评论(0)
推荐(0)
2020年3月11日
问题集锦 ~ javascript
摘要: #使用PHP输出json数据给js变量 SyntaxError: unexpected token: identifier const data = <?php echo json_encode($data); ?>; 申明变量时,使用 let
阅读全文
posted @ 2020-03-11 18:46 绿静風
阅读(57)
评论(0)
推荐(0)
下一页
公告