PHP是一种流行的Web开发语言,其中的sprintf和printf函数是常用的字符串格式化输出函数。这两个函数在输出字符串时可以方便的处理各种数据类型、字符串的格式与组合,因此十分实用。下面将对这两个函数进行介绍。1.环境说明PHP中的sprintf和printf函数应该在PHP 5及以上版本中使用。因此,在使用这两个函数之前,需要确保PHP版本…
前言Google BBR 是一款免费开源的TCP拥塞控制传输控制协议, 可以使 Linux 服务器显著提高吞吐量和减少 TCP 连接的延迟。yum系统更新yum update查看系统版本cat /etc/redhat-release输出如下则表示已升级到7.6CentOS Linux release 7.6.1810 (Core)安装elrepo并…
前言在 GitHub 提交代码时,终端机显示写入成功,但是最后一直卡在了下面这里没有推送成功:Enumerating objects: 19, done. Counting objects: 100% (19/19), done. Delta compression using up to 6 threads Compressing objects…
由于mysql_upgrade 功能在 mysql8.0 之后版本已经停用了,所以用一下命令即可mysql -u root -p #你的root密码 use mysql create user 'mysql.infoschema'@'%' identified by '密码'; grant all privileges on *.* to 'mys…
首先确保自己服务器有python环境然后再执行下面命令curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -
Linux 安装微软雅黑字体
SQL中的替换函数replace()使用
解决 Git 更新本地冲突:commit your changes or stash them before you can merge
Centos7使用docker搭建elasticsearch
MYSQL执行.sql文件
web系统需要在模板图片上动态写入相关数字,模板图片默认字体为微软雅黑,在windows本地测试结果正常,更新到linux测试环境,导出的模板字体不正确,查看服务器和本地代码一致,那么出问题可能就是linux上没有中文的微软雅黑字体。以下示例在CentOS下操作。1、检查安装中文字体fc-list :lang=zh如果报fc-list: comma…
用法语法REPLACE ( string_expression , string_pattern , string_replacement )参数string_expression 要搜索的字符串表达式。string_expression 可以是字符或二进制数据类型。string_pattern 是要查找的子字符串。string_pattern 可…
当git pull命令发出后,出现了下面的问题 error: Your local changes to the following files would be overwritten by merge: xxx/xxx/xxx.java Please, commit your changes or stash them before you c…
安装dockercat >/etc/yum.repos.d/docker.repo<<EOF [docker-ce-edge] name=Docker CE Edge - \$basearch baseurl=https://mirrors.aliyun.com/docker-ce/linux/centos/7/\$basearc…
说明:result.sql文件中是多条插入数据的sql语句。现将这些sql语句导入到数据库中,(不用打开文件拷贝然后粘贴执行,如果数据量大的话这种操作非常繁琐,应使用以下方法)。注:提前将文件拷贝至当前目录下。如果文件不在当前目录,在source 后应加上文件的绝对路径登录mysqlmysql -u root -p ;输入密码,选择数据库use m…