摘要: 先看如下例子字符串caxsaxx正则表达式xs*共找到 2 处匹配:xsx 注意x和s*是分开的 他在xs+匹配的基础上 又增加了x的匹配(ps 有x是因为s*支持0次匹配 就是可以不匹配s 自然就剩下x了) 再看下面 正则表达式xxs*共找到 1 处匹配:xx 他在xxs+匹配的基础上 又增加了x 阅读全文
posted @ 2019-11-12 15:04 newmiracle宇宙 阅读(2837) 评论(1) 推荐(2) 编辑
摘要: <pre>defined('APP_PATH') || define('APP_PATH', 'wafawfew');</pre> 返回值只有返回真和假 他支持运行代码 但js就不一样 他支持返回值。。 也支持运行代码<pre> var a= 2||3;alert(a);</pre> 返回的就是2 阅读全文
posted @ 2019-11-12 15:02 newmiracle宇宙 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 把1个表的字段内容复制到另外1个表的字段先zuolianjie 然后 set就可以了<pre>UPDATE grs_company AS c LEFT JOIN grs_company_jiu AS j ON c.id = j.id SET c.name = j.name</pre> 阅读全文
posted @ 2019-11-12 15:01 newmiracle宇宙 阅读(1034) 评论(0) 推荐(0) 编辑
摘要: navicat远程连接mysql的方法1 先在打开phpmyadmin 添加用户 用户名和密码自己设置 用户名别用root 文本域就是任意主机哈2 关闭防火墙service iptables status可以查看到iptables服务的当前状态。 开启: service iptables start 阅读全文
posted @ 2019-11-12 15:00 newmiracle宇宙 阅读(244) 评论(0) 推荐(0) 编辑
摘要: linux 用du查看硬盘信息 <pre>[root@iZ238qupob7Z web]# df -hFilesystem Size Used Avail Use% Mounted on/dev/xvda1 20G 7.9G 11G 43% /tmpfs 938M 0 938M 0% /dev/sh 阅读全文
posted @ 2019-11-12 14:58 newmiracle宇宙 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 文字和图片发光的简单demo阴影叠加下就好 <pre><!DOCTYPE html><html><head><style>h1{ color:#FFF; text-shadow: 0 0 5px #fff,0 0 5px #fff }.fwe{ color:#FFF; box-shadow: 0 0 阅读全文
posted @ 2019-11-12 14:48 newmiracle宇宙 阅读(65) 评论(0) 推荐(0) 编辑
摘要: <img />就算他不设置地址 在手机上 他默认是黑色背景的 所以 display:none才是真正不显示 阅读全文
posted @ 2019-11-12 14:47 newmiracle宇宙 阅读(120) 评论(0) 推荐(0) 编辑
摘要: PHP __destruct触发时间 1 对象被null2 对象被unset3 对象用完自动触发 阅读全文
posted @ 2019-11-12 14:44 newmiracle宇宙 阅读(476) 评论(0) 推荐(0) 编辑
摘要: mysql explain简单用法当输出有type 不是all的时候 就加索引优化 变成type=ref是最好状态 阅读全文
posted @ 2019-11-12 14:43 newmiracle宇宙 阅读(58) 评论(0) 推荐(0) 编辑
摘要: PHP多继承的简单写法 采用的是interface 然而继承没用extend<pre><?php interface father{ function shuchu(); } interface mother{ function dayin($my); } interface fam extends 阅读全文
posted @ 2019-11-12 14:43 newmiracle宇宙 阅读(107) 评论(0) 推荐(0) 编辑