1.PHP 正则表达式过滤特殊字符和空格<?php function replaceSpecialChar($strParam){ $regex = "/\ |\/|\~|\!|\@|\#|\\$|\%|\^|\&|\*|\(|\)|\_|\+|\|\:|\<|...
宝塔面板的PHP安装路径为/www/server/php/ 且支持多个PHP版本共存,所以安装PHP扩展的方法与网上那些示例略有不同,下们我通过安装oauth扩展来说明一下如何安装第三方PHP扩展。注意:1、安装之前,请先到软件列表 - 找到对应PHP版本 - 设置 - 安装扩展 中查看我们是...
$start_time = '2018-10-10 10:10:10'; $end_time = '2018-12-28 08:22:22'; get_time($start_time,$end_time); function get_time($start,$end){ $sta...
数组 转 对象function array_to_object($arr) { if (gettype($arr) != 'array') { return; } foreach ($arr as $k => $v) { if (g...
mysql 5.6升级到5.7出现Field * doesn't have a default value解决办法windows修改my.ini linux用户修改my.cnf(/etc/my.cnf)查找 sql-mode="STRICT_TRANS_TABLES,NO_AUT...
1.查看当前系统字符集cat /etc/locale.conf英文应该是:LANG=en_US.utf82.切换之前先备份配置文件cp /etc/locale.conf /etc/locale.conf_bak3.切换字符集echo "LANG=zh_CN.utf8" &g...
1、查看是否已经分配fdisk -l一般第二块是/dev/vdb之类的2、使用fdisk命令进行建立分区fdisk /dev/vdb然后依次操作 n p 1 回车 回车 wq保存退出。使用fdisk -l命令查看,已经有分区了3、格式化分区,建立文件系统mkfs.ext4 /dev/vdb 4...
1.安装base reop源 cd /etc/yum.repos.d2.接着备份旧的配置文件sudo mv CentOS-Base.repo CentOS-Base.repo.bak3.下载阿里源的文件sudo wget -O CentOS-Base.repo http://mirrors.a...
安装桌面yum -y groups install "GNOME Desktop" 配置源yum install epel* -y 安装xrdpyum --enablerepo=epel -y install xrdp 启动xrdp并设置开机启动systemctl sta...
JS代码:<script> var noRedirect = location.search.split('noRedirect=')[1] if ( ( noRedirect == null) || noRedirect.toString() != 'tr...