摘要: https://www.kancloud.cn/m22543/lwwanphp/708350 阅读全文
posted @ 2020-04-15 09:52 zrn 阅读(497) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/764182a0de7a 阅读全文
posted @ 2020-04-15 09:50 zrn 阅读(115) 评论(0) 推荐(0) 编辑
摘要: <?php $arr=[['a','b','c','d'],['2','3','4','5'],[',','.','?',';']]; $num = count($arr); if ($num 0) return false; if ($num 1) return $arr[0]; while(co 阅读全文
posted @ 2019-12-23 09:27 zrn 阅读(754) 评论(0) 推荐(0) 编辑
摘要: 开发文档:http://doc2.workerman.net/ 下载服务器端安装文件: 有windows版和linux版两个版本,我下载的linux版,在windows上也可以运行。 打开后有这些文件: 把这个文件放在服务器上或者项目中都可以,需要运行的就是最后一个start_for_win.bat 阅读全文
posted @ 2019-12-07 15:25 zrn 阅读(2256) 评论(1) 推荐(0) 编辑
摘要: if判断句使用 the_world_is_flat=False if the_world_is_flat: print ("Be careful not to fall off!") else: print ("No!") 运行结果: 运算 print(2+2) print(8/5) print(8 阅读全文
posted @ 2019-12-06 18:01 zrn 阅读(199) 评论(0) 推荐(0) 编辑
摘要: window.onbeforeunload = function(){ return '你确定要关闭吗?'; } 阅读全文
posted @ 2019-05-06 15:34 zrn 阅读(1467) 评论(0) 推荐(0) 编辑
摘要: 破解补丁方式(永久激活): 第一步:下载破解补丁,密码:fc3s https://pan.baidu.com/s/15KDy6wvW7ljigerw9bCXTg第二步:将下载好的补丁放入Pycharm安装路径中的/bin文件夹中,修改bin文件夹中的pycharm.exe.vmoptions 和 p 阅读全文
posted @ 2019-02-21 15:56 zrn 阅读(3168) 评论(0) 推荐(0) 编辑
摘要: 1. 启用php-ldap 开启php.ini配置,安装ldap扩展 extension=php_ldap.dll 2.操作AD域 阅读全文
posted @ 2019-02-20 10:53 zrn 阅读(3128) 评论(0) 推荐(0) 编辑
摘要: 打开router文件下的index.js文件 之后访问http://localhost:8080/#/index就可以了 访问成功~ 阅读全文
posted @ 2019-02-19 11:33 zrn 阅读(168) 评论(0) 推荐(0) 编辑
摘要: connect('127.0.0.1',6379,1);//短链接,本地host,端口为6379,超过1秒放弃链接 $redis->open('127.0.0.1',6379,1);//短链接(同上) $redis->pconnect('127.0.0.1',6379,1);//长链接,本地host,端口为6379,超过1秒放弃链接 $redis->popen('127.0.0... 阅读全文
posted @ 2019-02-15 15:05 zrn 阅读(150) 评论(0) 推荐(0) 编辑