摘要:
base64_encode编码规律分析字符串长度除以3向上取整乘以4等于编码后的字符串长度ceil(strlen($string)/3)*4 = strlen(base64_encode($string));例如base64_encode("abcd") == "YWJjZA==" (2*4=8)如... 阅读全文
摘要:
//部分JS代码$.ajax({ async: false, url: "http://www.xxxx.com/api/", type: "GET",//不能使用POST方式 dataType: 'jsonp', jsonp: 'jsonpcallback', data: "uid=3&atoke 阅读全文
摘要:
文件位置C:\Windows\System32\drivers\etc 中的hosts文件修改方式 指定IP 域名192.168.66.7 www.baidu.com 阅读全文