09 2016 档案

摘要:查看占用63243是谁 C:\Users\Administrator>netstat -aon|findstr "63243" TCP 172.27.33.11:63243 58.215.183.152:443 CLOSE_WAIT 7440 C:\Users\Administrator>taskl 阅读全文
posted @ 2016-09-30 17:55 maxomnis 阅读(266) 评论(0) 推荐(0)
摘要:<?phpfunction test($key){ static $array = array(); /* */ $array[]=$key; var_dump($array);} test(1);test(2); 输出: array(1) { [0]=> int(1)}array(2) { [0] 阅读全文
posted @ 2016-09-28 11:35 maxomnis 阅读(263) 评论(0) 推荐(0)
摘要:1. 这是Python 2 mimetypes的bug2. 需要将Python2.7\lib\mimetypes.py文件中如下片段注释或删除:try: ctype = ctype.encode(default_encoding) # omit in 3.x!except UnicodeEncode 阅读全文
posted @ 2016-09-22 19:13 maxomnis 阅读(349) 评论(0) 推荐(0)