摘要: $client = new SoapClient ($this->webServiceUrl); $client->soap_defencoding = 'utf-8'; $client->xml_encoding = 'utf-8'; $param = array('arg0'=>$context);//参数拼接xml字符串 $result = $client->managementMemb... 阅读全文
posted @ 2019-03-29 00:09 风79 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 问题: 1. webservice在输入命令的时候wsimport的时候会出现如下错误: wsimport不是内部或者外部命令。 2. javac不是内部或者外部命令 3 java 就可以显示配置成功。 网上搜了一堆,全都是说配置不对,可是我们仔细检查并没有发现什么配置错误,令人发狂! 最后找到了方 阅读全文
posted @ 2019-03-26 14:17 风79 阅读(641) 评论(0) 推荐(0) 编辑
摘要: js判断http请求还是https请求 阅读全文
posted @ 2019-03-19 10:51 风79 阅读(3333) 评论(0) 推荐(0) 编辑
摘要: if(!preg_match('/^[1-9]\d*$/',$num)) { echo "非正整数";} else{ echo "整数"; } 阅读全文
posted @ 2019-03-15 14:21 风79 阅读(1307) 评论(0) 推荐(0) 编辑
摘要: 1、猪八戒网 https://www.zbj.com/ 2、解放号 https://www.jfh.com/ 3、云沃客 https://www.clouderwork.com/ 4、码市 https://codemart.com/ 5、程序员客栈 https://www.proginn.com/ 阅读全文
posted @ 2019-03-14 10:42 风79 阅读(3909) 评论(0) 推荐(0) 编辑
摘要: /* $pwd 秘钥; $data 要加密的数据 */ function rc4($pwd, $data) { $cipher = ''; $key[] = ""; $box[] = ""; $pwd_length = strlen($pwd); $data_length = strlen($data); ... 阅读全文
posted @ 2019-03-13 17:26 风79 阅读(139) 评论(0) 推荐(0) 编辑
摘要: function to_last_month($num){ $today = date("Y-m-d"); $arr = array(); $m = '-'.$num.' month'; $old_time = strtotime($m,strtotime($today)); for($i = 0;$i <= $num-1; ++$i){ $t = strtotime("+$i... 阅读全文
posted @ 2019-03-12 16:52 风79 阅读(1143) 评论(0) 推荐(0) 编辑