摘要: 1 getDeclaringClass()->name;15 16 if (__CLASS__ !== $class) {17 @trigger_error(sprintf('Calling the %s::init() method is deprecat... 阅读全文
posted @ 2015-12-24 14:27 iYunBlog 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 一、错误信息:1 Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'al... 阅读全文
posted @ 2015-12-10 15:52 iYunBlog 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1、重启进入安全模式:1 msconfig-boot-safe mode2、安全模式下,关闭软件保护:1 net stop sppsvc3、 阅读全文
posted @ 2015-10-30 23:01 iYunBlog 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 1、删除旧密匙:1 slmgr.vbs -upk2、输入新密匙:1 slmgr.vbs /ipk D6NGM-WRYH4-3TF7H-66B3Q-C36VD2 slmgr.vbs /ipk 3NRGW-42JWJ-KX479-B92TF-BY333 slmgr.vbs /ipk 7VN6V-WD7B... 阅读全文
posted @ 2015-10-30 22:58 iYunBlog 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1、MySQL安装:1 mysqld.exe --install MySQL-5.6.27 --defaults-file=D:\Wnmp\mysql-5.6.27\my.cnf2、启动MySQL:1 net start MySQL-5.6.273、停止MySQL:1 net stop MySQL-... 阅读全文
posted @ 2015-10-30 14:59 iYunBlog 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1、connect:1 connect('127.0.0.1', 6379);5 var_dump($result); // boolean true2、set:1 connect('127.0.0.1', 6379);5 $result = $Redis->set('test', date('Y-... 阅读全文
posted @ 2015-10-27 14:13 iYunBlog 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 一、配置php.ini文件:1 session.save_handler = redis2 session.save_path = "tcp://127.0.0.1:6379"二、设置SESSION信息: 1 1001, 8 'username' => 'admin', 9 'pa... 阅读全文
posted @ 2015-10-27 10:18 iYunBlog 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 1、回退所有内容到上一个版本:1 git reset HEAD^2、回退test.php这个文件的版本到上一个版本:1 git reset HEAD^ test.php3、向前回退到第3个版本:1 git reset --soft HEAD~3 4、将本地的状态回退到和远程的一样:1 git res... 阅读全文
posted @ 2015-10-12 14:17 iYunBlog 阅读(124) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; charset utf-8; autoindex on; server_name_in_redirect off; server_name www.example.com; root D:/phpStudy/W... 阅读全文
posted @ 2015-10-10 16:25 iYunBlog 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 一、验证码:1、http://www.touclick.com/index.aspx 阅读全文
posted @ 2015-09-30 14:19 iYunBlog 阅读(103) 评论(0) 推荐(0) 编辑