1 进入PHP官网 https://www.php.net/ 2 点击download,选择相应的版本,点击windows下载链接 这里我需要下载5.5版本的,而7以前的版本在这个页面上是没有显示的,所以得去别的地方下载,下面的地址都有: https://windows.php.net/downlo ...
JSON:JavaScript 对象表示法(JavaScript Object Notation)。 JSON 是存储和交换文本信息的语法。类似 XML。 JSON 比 XML 更小、更快,更易解析。 每一章中用到的实例 { "employees": [ { "firstName":"Bill" , ...
分类:
Web程序 时间:
2021-07-05 17:45:05
阅读次数:
0
1、启动服务 systemctl restart mysqld.service 报错: 启动数据库Can‘t connect to MYSQL server through socket ''var/lib/mysql/mysql.cock(146 lock timed out:Retry tran ...
分类:
数据库 时间:
2021-07-05 17:35:04
阅读次数:
0
参见: https://git-scm.com/book/zh/v2 https://www.liaoxuefeng.com/wiki/896043488029600 ...
分类:
其他好文 时间:
2021-07-05 17:30:18
阅读次数:
0
一、循环的适用场景(建议) for : 比较适合遍历数组,字符串等等。 for in : 比较适合遍历对象,遍历对象时使用这个再合适不过。 while : while 与 for 的使用场景差不多。 do while : 至少执行一边的循环,遍历数组和字符串也很方便。 二、while遍历数组需要注意 ...
分类:
编程语言 时间:
2021-07-05 17:29:20
阅读次数:
0
参见: 下载:https://git-scm.com/download/win 安装教程:https://www.jianshu.com/p/bebba0d8038e ...
分类:
其他好文 时间:
2021-07-05 17:28:58
阅读次数:
0
Vue脚手架安装失败 参考链接 https://www.cnblogs.com/LiQingXin/p/14221850.html 进行vue init webpack vue01 命令行失败 可能原因是github访问不了,请求超时 试着去ping github网站发现可以ping通,就是延迟有点 ...
分类:
其他好文 时间:
2021-07-05 17:26:12
阅读次数:
0
https://www.it1352.com/1873377.html #!/bin/sh if [ -n "$TMUX" ]; then case "$1" in prod_*) tmux selectp -P bg=red ;; esac fi ssh "$@" tmux selectp -P ...
分类:
其他好文 时间:
2021-07-05 17:23:38
阅读次数:
0
1、去树莓派官网下载镜像 https://www.raspberrypi.org/software/operating-systems/#raspberry-pi-os-32-bit 2、去github上下载 https://github.com/dhruvvyas90/qemu-rpi-kerne ...
网站提示报错 文件无法上传,好像是/tmp满了 实际是数据盘满了 于是先扩容 https://www.cnblogs.com/toumingbai/p/10216142.html 再新加一块磁盘,格式化成ext4 挂载 mkfs.ext4 /dev/vdc mount /dev/vdc /data/ ...
分类:
其他好文 时间:
2021-07-02 16:36:40
阅读次数:
0