摘要:
WSL 在商店里安装ubuntu,然后在powerShell里输入ubuntu wslconfig /list 查看安装的wsl wslconfig /setdefault ubuntu 设置powerShell里bash命令默认打开的wsl wslconfig /unregister ubuntu 阅读全文
摘要:
(global-set-key (kbd "<f1>") 'my-func) (add-hook 'emacs-lisp-mode-hook 'show-paren-mode) 在lisp-mode里打开paren-mode (defun indent-buffer() (interactive) 阅读全文
摘要:
Emacs github C-h t emacs tutorial 原生手册中文 http://www.gnuemacs.org/ http://www.gnu.org/software/emacs/manual/html_node/emacs/index.html https://www.gnu. 阅读全文
摘要:
phpinfo() 查看php信息 可同时存在多个版本的php nginx的upstream可使用不同的php 安装 官网获取链接 wget http://hk1.php.net/get/php-7.3.2.tar.gz/from/this/mirror tar -zxvf mirror ./con 阅读全文
摘要:
GD 步骤: 1、创建画布:在内存开辟空间,用于存储图像信息 2、绘制图像 3、输出图像:要用header()发送Content-type 4、释放资源 直接用浏览器请求该脚本,或将该脚本的url赋给src属性,都可以获取图像 ** php配置文件 extension_dir="ext所在目录" 启 阅读全文
摘要:
max — 找出最大值 min — 找出最小值 计算 abs — 绝对值 sqrt — 平方根 pow — 指数表达式 exp — 计算 e 的指数 expm1 — 返回 exp(number) - 1,甚至当 number 的值接近零也能计算出准确结果 log — 自然对数 log10 — 以 1 阅读全文
摘要:
flush — 刷新输出缓冲 ob_clean — 清空(擦掉)输出缓冲区 ob_end_clean — 清空(擦除)缓冲区并关闭输出缓冲 ob_end_flush — 冲刷出(送出)输出缓冲区内容并关闭缓冲 ob_flush — 冲刷出(送出)输出缓冲区中的内容 ob_get_clean — 得到 阅读全文
摘要:
路径 basename — 返回路径中的文件名部分 dirname — 返回路径中的目录部分 pathinfo — 返回文件路径的信息 realpath — 返回规范化的绝对路径名 glob — 寻找与模式匹配的文件路径 fnmatch — 用模式匹配文件名 判断 file_exists — 检查文 阅读全文
摘要:
session_set_save_handler — 设置用户自定义会话存储函数 session_save_path — 读取/设置当前会话的保存路径 session_id — 获取/设置当前会话 ID session_create_id — Create new session id sessio 阅读全文
摘要:
php.ini 配置时区 date.timezone checkdate — 验证日期 date — 时间戳转字符串 getdate — 时间戳转关联数组 localtime — 时间戳转关联数组 date_parse — 字符串日期转为关联数组 date_parse_from_format — 指 阅读全文