No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AopClient.php 43KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294
  1. <?php
  2. require_once 'AopEncrypt.php';
  3. class AopClient {
  4. //应用ID
  5. public $appId;
  6. //私钥文件路径
  7. public $rsaPrivateKeyFilePath;
  8. //私钥值
  9. public $rsaPrivateKey;
  10. //网关
  11. public $gatewayUrl = "https://openapi.alipay.com/gateway.do";
  12. //返回数据格式
  13. public $format = "json";
  14. //api版本
  15. public $apiVersion = "1.0";
  16. // 表单提交字符集编码
  17. public $postCharset = "UTF-8";
  18. //使用文件读取文件格式,请只传递该值
  19. public $alipayPublicKey = null;
  20. //使用读取字符串格式,请只传递该值
  21. public $alipayrsaPublicKey;
  22. public $debugInfo = false;
  23. private $fileCharset = "UTF-8";
  24. private $RESPONSE_SUFFIX = "_response";
  25. private $ERROR_RESPONSE = "error_response";
  26. private $SIGN_NODE_NAME = "sign";
  27. //加密XML节点名称
  28. private $ENCRYPT_XML_NODE_NAME = "response_encrypted";
  29. private $needEncrypt = false;
  30. //签名类型
  31. public $signType = "RSA";
  32. //加密密钥和类型
  33. public $encryptKey;
  34. public $encryptType = "AES";
  35. protected $alipaySdkVersion = "alipay-sdk-php-20161101";
  36. public function generateSign($params, $signType = "RSA") {
  37. return $this->sign($this->getSignContent($params), $signType);
  38. }
  39. public function rsaSign($params, $signType = "RSA") {
  40. return $this->sign($this->getSignContent($params), $signType);
  41. }
  42. public function getSignContent($params) {
  43. ksort($params);
  44. $stringToBeSigned = "";
  45. $i = 0;
  46. foreach ($params as $k => $v) {
  47. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  48. // 转换成目标字符集
  49. $v = $this->characet($v, $this->postCharset);
  50. if ($i == 0) {
  51. $stringToBeSigned .= "$k" . "=" . "$v";
  52. } else {
  53. $stringToBeSigned .= "&" . "$k" . "=" . "$v";
  54. }
  55. $i++;
  56. }
  57. }
  58. unset ($k, $v);
  59. return $stringToBeSigned;
  60. }
  61. //此方法对value做urlencode
  62. public function getSignContentUrlencode($params) {
  63. ksort($params);
  64. $stringToBeSigned = "";
  65. $i = 0;
  66. foreach ($params as $k => $v) {
  67. if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
  68. // 转换成目标字符集
  69. $v = $this->characet($v, $this->postCharset);
  70. if ($i == 0) {
  71. $stringToBeSigned .= "$k" . "=" . urlencode($v);
  72. } else {
  73. $stringToBeSigned .= "&" . "$k" . "=" . urlencode($v);
  74. }
  75. $i++;
  76. }
  77. }
  78. unset ($k, $v);
  79. return $stringToBeSigned;
  80. }
  81. protected function sign($data, $signType = "RSA") {
  82. if($this->checkEmpty($this->rsaPrivateKeyFilePath)){
  83. $priKey=$this->rsaPrivateKey;
  84. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  85. wordwrap($priKey, 64, "\n", true) .
  86. "\n-----END RSA PRIVATE KEY-----";
  87. }else {
  88. $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
  89. $res = openssl_get_privatekey($priKey);
  90. }
  91. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  92. if (!function_exists('openssl_sign')) {
  93. die('没找到函数openssl_sign,请检查环境配置!');
  94. }
  95. if ("RSA2" == $signType) {
  96. openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
  97. } else {
  98. openssl_sign($data, $sign, $res);
  99. }
  100. if(!$this->checkEmpty($this->rsaPrivateKeyFilePath)){
  101. openssl_free_key($res);
  102. }
  103. $sign = base64_encode($sign);
  104. return $sign;
  105. }
  106. /**
  107. * RSA单独签名方法,未做字符串处理,字符串处理见getSignContent()
  108. * @param $data 待签名字符串
  109. * @param $privatekey 商户私钥,根据keyfromfile来判断是读取字符串还是读取文件,false:填写私钥字符串去回车和空格 true:填写私钥文件路径
  110. * @param $signType 签名方式,RSA:SHA1 RSA2:SHA256
  111. * @param $keyfromfile 私钥获取方式,读取字符串还是读文件
  112. * @return string
  113. * @author mengyu.wh
  114. */
  115. public function alonersaSign($data,$privatekey,$signType = "RSA",$keyfromfile=false) {
  116. if(!$keyfromfile){
  117. $priKey=$privatekey;
  118. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  119. wordwrap($priKey, 64, "\n", true) .
  120. "\n-----END RSA PRIVATE KEY-----";
  121. }
  122. else{
  123. $priKey = file_get_contents($privatekey);
  124. $res = openssl_get_privatekey($priKey);
  125. }
  126. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  127. if ("RSA2" == $signType) {
  128. openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
  129. } else {
  130. openssl_sign($data, $sign, $res);
  131. }
  132. if($keyfromfile){
  133. openssl_free_key($res);
  134. }
  135. $sign = base64_encode($sign);
  136. return $sign;
  137. }
  138. protected function curl($url, $postFields = null) {
  139. $ch = curl_init();
  140. curl_setopt($ch, CURLOPT_URL, $url);
  141. curl_setopt($ch, CURLOPT_FAILONERROR, false);
  142. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  143. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  144. $postBodyString = "";
  145. $encodeArray = Array();
  146. $postMultipart = false;
  147. if (is_array($postFields) && 0 < count($postFields)) {
  148. foreach ($postFields as $k => $v) {
  149. if ("@" != substr($v, 0, 1)) //判断是不是文件上传
  150. {
  151. $postBodyString .= "$k=" . urlencode($this->characet($v, $this->postCharset)) . "&";
  152. $encodeArray[$k] = $this->characet($v, $this->postCharset);
  153. } else //文件上传用multipart/form-data,否则用www-form-urlencoded
  154. {
  155. $postMultipart = true;
  156. $encodeArray[$k] = new \CURLFile(substr($v, 1));
  157. }
  158. }
  159. unset ($k, $v);
  160. curl_setopt($ch, CURLOPT_POST, true);
  161. if ($postMultipart) {
  162. curl_setopt($ch, CURLOPT_POSTFIELDS, $encodeArray);
  163. } else {
  164. curl_setopt($ch, CURLOPT_POSTFIELDS, substr($postBodyString, 0, -1));
  165. }
  166. }
  167. if ($postMultipart) {
  168. $headers = array('content-type: multipart/form-data;charset=' . $this->postCharset . ';boundary=' . $this->getMillisecond());
  169. } else {
  170. $headers = array('content-type: application/x-www-form-urlencoded;charset=' . $this->postCharset);
  171. }
  172. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  173. $reponse = curl_exec($ch);
  174. if (curl_errno($ch)) {
  175. throw new Exception(curl_error($ch), 0);
  176. } else {
  177. $httpStatusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  178. if (200 !== $httpStatusCode) {
  179. throw new Exception($reponse, $httpStatusCode);
  180. }
  181. }
  182. curl_close($ch);
  183. return $reponse;
  184. }
  185. protected function getMillisecond() {
  186. list($s1, $s2) = explode(' ', microtime());
  187. return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
  188. }
  189. protected function logCommunicationError($apiName, $requestUrl, $errorCode, $responseTxt) {
  190. $localIp = isset ($_SERVER["SERVER_ADDR"]) ? $_SERVER["SERVER_ADDR"] : "CLI";
  191. $logger = new LtLogger;
  192. $logger->conf["log_file"] = rtrim(AOP_SDK_WORK_DIR, '\\/') . '/' . "logs/aop_comm_err_" . $this->appId . "_" . date("Y-m-d") . ".log";
  193. $logger->conf["separator"] = "^_^";
  194. $logData = array(
  195. date("Y-m-d H:i:s"),
  196. $apiName,
  197. $this->appId,
  198. $localIp,
  199. PHP_OS,
  200. $this->alipaySdkVersion,
  201. $requestUrl,
  202. $errorCode,
  203. str_replace("\n", "", $responseTxt)
  204. );
  205. $logger->log($logData);
  206. }
  207. /**
  208. * 生成用于调用收银台SDK的字符串
  209. * @param $request SDK接口的请求参数对象
  210. * @return string
  211. * @author guofa.tgf
  212. */
  213. public function sdkExecute($request) {
  214. $this->setupCharsets($request);
  215. $params['app_id'] = $this->appId;
  216. $params['method'] = $request->getApiMethodName();
  217. $params['format'] = $this->format;
  218. $params['sign_type'] = $this->signType;
  219. $params['timestamp'] = date("Y-m-d H:i:s");
  220. $params['alipay_sdk'] = $this->alipaySdkVersion;
  221. $params['charset'] = $this->postCharset;
  222. $version = $request->getApiVersion();
  223. $params['version'] = $this->checkEmpty($version) ? $this->apiVersion : $version;
  224. if ($notify_url = $request->getNotifyUrl()) {
  225. $params['notify_url'] = $notify_url;
  226. }
  227. $dict = $request->getApiParas();
  228. $params['biz_content'] = $dict['biz_content'];
  229. ksort($params);
  230. $params['sign'] = $this->generateSign($params, $this->signType);
  231. foreach ($params as &$value) {
  232. $value = $this->characet($value, $params['charset']);
  233. }
  234. return http_build_query($params);
  235. }
  236. /*
  237. 页面提交执行方法
  238. @param:跳转类接口的request; $httpmethod 提交方式。两个值可选:post、get
  239. @return:构建好的、签名后的最终跳转URL(GET)或String形式的form(POST)
  240. auther:笙默
  241. */
  242. public function pageExecute($request,$httpmethod = "POST") {
  243. $this->setupCharsets($request);
  244. if (strcasecmp($this->fileCharset, $this->postCharset)) {
  245. // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
  246. throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
  247. }
  248. $iv=null;
  249. if(!$this->checkEmpty($request->getApiVersion())){
  250. $iv=$request->getApiVersion();
  251. }else{
  252. $iv=$this->apiVersion;
  253. }
  254. //组装系统参数
  255. $sysParams["app_id"] = $this->appId;
  256. $sysParams["version"] = $iv;
  257. $sysParams["format"] = $this->format;
  258. $sysParams["sign_type"] = $this->signType;
  259. $sysParams["method"] = $request->getApiMethodName();
  260. $sysParams["timestamp"] = date("Y-m-d H:i:s");
  261. $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
  262. $sysParams["terminal_type"] = $request->getTerminalType();
  263. $sysParams["terminal_info"] = $request->getTerminalInfo();
  264. $sysParams["prod_code"] = $request->getProdCode();
  265. $sysParams["notify_url"] = $request->getNotifyUrl();
  266. $sysParams["return_url"] = $request->getReturnUrl();
  267. $sysParams["charset"] = $this->postCharset;
  268. //获取业务参数
  269. $apiParams = $request->getApiParas();
  270. if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
  271. $sysParams["encrypt_type"] = $this->encryptType;
  272. if ($this->checkEmpty($apiParams['biz_content'])) {
  273. throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
  274. }
  275. if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
  276. throw new Exception(" encryptType and encryptKey must not null! ");
  277. }
  278. if ("AES" != $this->encryptType) {
  279. throw new Exception("加密类型只支持AES");
  280. }
  281. // 执行加密
  282. $enCryptContent = encrypt($apiParams['biz_content'], $this->encryptKey);
  283. $apiParams['biz_content'] = $enCryptContent;
  284. }
  285. //print_r($apiParams);
  286. $totalParams = array_merge($apiParams, $sysParams);
  287. //待签名字符串
  288. $preSignStr = $this->getSignContent($totalParams);
  289. //签名
  290. $totalParams["sign"] = $this->generateSign($totalParams, $this->signType);
  291. if ("GET" == strtoupper($httpmethod)) {
  292. //value做urlencode
  293. $preString=$this->getSignContentUrlencode($totalParams);
  294. //拼接GET请求串
  295. $requestUrl = $this->gatewayUrl."?".$preString;
  296. return $requestUrl;
  297. } else {
  298. //拼接表单字符串
  299. return $this->buildRequestForm($totalParams);
  300. }
  301. }
  302. /**
  303. * 建立请求,以表单HTML形式构造(默认)
  304. * @param $para_temp 请求参数数组
  305. * @return 提交表单HTML文本
  306. */
  307. protected function buildRequestForm($para_temp) {
  308. $sHtml = "<form id='alipaysubmit' name='alipaysubmit' action='".$this->gatewayUrl."?charset=".trim($this->postCharset)."' method='POST'>";
  309. foreach($para_temp as $key=> $val){
  310. if (false === $this->checkEmpty($val)) {
  311. //$val = $this->characet($val, $this->postCharset);
  312. $val = str_replace("'","&apos;",$val);
  313. //$val = str_replace("\"","&quot;",$val);
  314. $sHtml.= "<input type='hidden' name='".$key."' value='".$val."'/>";
  315. }
  316. }
  317. //submit按钮控件请不要含有name属性
  318. $sHtml = $sHtml."<input type='submit' value='ok' style='display:none;''></form>";
  319. $sHtml = $sHtml."<script>document.htm.forms['alipaysubmit'].submit();</script>";
  320. return $sHtml;
  321. }
  322. public function execute($request, $authToken = null, $appInfoAuthtoken = null,$admin_pay = null) {
  323. $this->setupCharsets($request);
  324. // // 如果两者编码不一致,会出现签名验签或者乱码
  325. if (strcasecmp($this->fileCharset, $this->postCharset)) {
  326. // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
  327. throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
  328. }
  329. $iv = null;
  330. if (!$this->checkEmpty($request->getApiVersion())) {
  331. $iv = $request->getApiVersion();
  332. } else {
  333. $iv = $this->apiVersion;
  334. }
  335. //组装系统参数
  336. $sysParams["app_id"] = $this->appId;
  337. $sysParams["version"] = $iv;
  338. $sysParams["format"] = $this->format;
  339. $sysParams["sign_type"] = $this->signType;
  340. $sysParams["method"] = $request->getApiMethodName();
  341. $sysParams["timestamp"] = date("Y-m-d H:i:s");
  342. $sysParams["auth_token"] = $authToken;
  343. $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
  344. $sysParams["terminal_type"] = $request->getTerminalType();
  345. $sysParams["terminal_info"] = $request->getTerminalInfo();
  346. $sysParams["prod_code"] = $request->getProdCode();
  347. $sysParams["notify_url"] = $request->getNotifyUrl();
  348. $sysParams["charset"] = $this->postCharset;
  349. $sysParams["app_auth_token"] = $appInfoAuthtoken;
  350. //获取业务参数
  351. $apiParams = $request->getApiParas();
  352. if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
  353. $sysParams["encrypt_type"] = $this->encryptType;
  354. if ($this->checkEmpty($apiParams['biz_content'])) {
  355. throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
  356. }
  357. if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
  358. throw new Exception(" encryptType and encryptKey must not null! ");
  359. }
  360. if ("AES" != $this->encryptType) {
  361. throw new Exception("加密类型只支持AES");
  362. }
  363. // 执行加密
  364. $enCryptContent = encrypt($apiParams['biz_content'], $this->encryptKey);
  365. $apiParams['biz_content'] = $enCryptContent;
  366. }
  367. //签名
  368. $sysParams["sign"] = $this->generateSign(array_merge($apiParams, $sysParams), $this->signType);
  369. //系统参数放入GET请求串
  370. $requestUrl = $this->gatewayUrl . "?";
  371. foreach ($sysParams as $sysParamKey => $sysParamValue) {
  372. $requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&";
  373. }
  374. $requestUrl = substr($requestUrl, 0, -1);
  375. //发起HTTP请求
  376. try {
  377. $resp = $this->curl($requestUrl, $apiParams);
  378. } catch (Exception $e) {
  379. $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_ERROR_" . $e->getCode(), $e->getMessage());
  380. return false;
  381. }
  382. //解析AOP返回结果
  383. $respWellFormed = false;
  384. // 将返回结果转换本地文件编码
  385. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  386. $signData = null;
  387. if ("json" == $this->format) {
  388. $respObject = json_decode($r);
  389. if (null !== $respObject) {
  390. $respWellFormed = true;
  391. $signData = $this->parserJSONSignData($request, $resp, $respObject);
  392. }
  393. } else if ("xml" == $this->format) {
  394. $respObject = @ simplexml_load_string($resp);
  395. if (false !== $respObject) {
  396. $respWellFormed = true;
  397. $signData = $this->parserXMLSignData($request, $resp);
  398. }
  399. }
  400. //返回的HTTP文本不是标准JSON或者XML,记下错误日志
  401. if (false === $respWellFormed) {
  402. $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_RESPONSE_NOT_WELL_FORMED", $resp);
  403. return false;
  404. }
  405. if (!empty($admin_pay)) {
  406. // 验签,用于后台支付宝配置信息判断
  407. $resultS = $this->checkResponseSign_new($request, $signData, $resp, $respObject);
  408. if (!empty($resultS)) {
  409. return $resultS;
  410. }
  411. }else{
  412. // 验签
  413. $this->checkResponseSign($request, $signData, $resp, $respObject);
  414. }
  415. // 解密
  416. if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
  417. if ("json" == $this->format) {
  418. $resp = $this->encryptJSONSignSource($request, $resp);
  419. // 将返回结果转换本地文件编码
  420. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  421. $respObject = json_decode($r);
  422. }else{
  423. $resp = $this->encryptXMLSignSource($request, $resp);
  424. $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
  425. $respObject = @ simplexml_load_string($r);
  426. }
  427. }
  428. return $respObject;
  429. }
  430. /**
  431. * 转换字符集编码
  432. * @param $data
  433. * @param $targetCharset
  434. * @return string
  435. */
  436. function characet($data, $targetCharset) {
  437. if (!empty($data)) {
  438. $fileType = $this->fileCharset;
  439. if (strcasecmp($fileType, $targetCharset) != 0) {
  440. $data = mb_convert_encoding($data, $targetCharset, $fileType);
  441. // $data = iconv($fileType, $targetCharset.'//IGNORE', $data);
  442. }
  443. }
  444. return $data;
  445. }
  446. public function exec($paramsArray) {
  447. if (!isset ($paramsArray["method"])) {
  448. trigger_error("No api name passed");
  449. }
  450. $inflector = new LtInflector;
  451. $inflector->conf["separator"] = ".";
  452. $requestClassName = ucfirst($inflector->camelize(substr($paramsArray["method"], 7))) . "Request";
  453. if (!class_exists($requestClassName)) {
  454. trigger_error("No such api: " . $paramsArray["method"]);
  455. }
  456. $session = isset ($paramsArray["session"]) ? $paramsArray["session"] : null;
  457. $req = new $requestClassName;
  458. foreach ($paramsArray as $paraKey => $paraValue) {
  459. $inflector->conf["separator"] = "_";
  460. $setterMethodName = $inflector->camelize($paraKey);
  461. $inflector->conf["separator"] = ".";
  462. $setterMethodName = "set" . $inflector->camelize($setterMethodName);
  463. if (method_exists($req, $setterMethodName)) {
  464. $req->$setterMethodName ($paraValue);
  465. }
  466. }
  467. return $this->execute($req, $session);
  468. }
  469. /**
  470. * 校验$value是否非空
  471. * if not set ,return true;
  472. * if is null , return true;
  473. **/
  474. protected function checkEmpty($value) {
  475. if (!isset($value))
  476. return true;
  477. if ($value === null)
  478. return true;
  479. if (trim($value) === "")
  480. return true;
  481. return false;
  482. }
  483. /** rsaCheckV1 & rsaCheckV2
  484. * 验证签名
  485. * 在使用本方法前,必须初始化AopClient且传入公钥参数。
  486. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  487. **/
  488. public function rsaCheckV1($params, $rsaPublicKeyFilePath,$signType='RSA') {
  489. $sign = $params['sign'];
  490. $params['sign_type'] = null;
  491. $params['sign'] = null;
  492. return $this->verify($this->getSignContent($params), $sign, $rsaPublicKeyFilePath,$signType);
  493. }
  494. public function rsaCheckV2($params, $rsaPublicKeyFilePath, $signType='RSA') {
  495. $sign = $params['sign'];
  496. $params['sign'] = null;
  497. return $this->verify($this->getSignContent($params), $sign, $rsaPublicKeyFilePath, $signType);
  498. }
  499. function verify($data, $sign, $rsaPublicKeyFilePath, $signType = 'RSA') {
  500. if($this->checkEmpty($this->alipayPublicKey)){
  501. $pubKey= $this->alipayrsaPublicKey;
  502. $res = "-----BEGIN PUBLIC KEY-----\n" .
  503. wordwrap($pubKey, 64, "\n", true) .
  504. "\n-----END PUBLIC KEY-----";
  505. }else {
  506. //读取公钥文件
  507. $pubKey = file_get_contents($rsaPublicKeyFilePath);
  508. //转换为openssl格式密钥
  509. $res = openssl_get_publickey($pubKey);
  510. }
  511. ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
  512. //调用openssl内置方法验签,返回bool值
  513. if ("RSA2" == $signType) {
  514. $result = (bool)openssl_verify($data, base64_decode($sign), $res, OPENSSL_ALGO_SHA256);
  515. } else {
  516. $result = (bool)openssl_verify($data, base64_decode($sign), $res);
  517. }
  518. if(!$this->checkEmpty($this->alipayPublicKey)) {
  519. //释放资源
  520. openssl_free_key($res);
  521. }
  522. return $result;
  523. }
  524. /**
  525. * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
  526. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  527. **/
  528. public function checkSignAndDecrypt($params, $rsaPublicKeyPem, $rsaPrivateKeyPem, $isCheckSign, $isDecrypt, $signType='RSA') {
  529. $charset = $params['charset'];
  530. $bizContent = $params['biz_content'];
  531. if ($isCheckSign) {
  532. if (!$this->rsaCheckV2($params, $rsaPublicKeyPem, $signType)) {
  533. echo "<br/>checkSign failure<br/>";
  534. exit;
  535. }
  536. }
  537. if ($isDecrypt) {
  538. return $this->rsaDecrypt($bizContent, $rsaPrivateKeyPem, $charset);
  539. }
  540. return $bizContent;
  541. }
  542. /**
  543. * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
  544. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  545. **/
  546. public function encryptAndSign($bizContent, $rsaPublicKeyPem, $rsaPrivateKeyPem, $charset, $isEncrypt, $isSign, $signType='RSA') {
  547. // 加密,并签名
  548. if ($isEncrypt && $isSign) {
  549. $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
  550. $sign = $this->sign($encrypted, $signType);
  551. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?><alipay><response>$encrypted</response><encryption_type>RSA</encryption_type><sign>$sign</sign><sign_type>$signType</sign_type></alipay>";
  552. return $response;
  553. }
  554. // 加密,不签名
  555. if ($isEncrypt && (!$isSign)) {
  556. $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
  557. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?><alipay><response>$encrypted</response><encryption_type>$signType</encryption_type></alipay>";
  558. return $response;
  559. }
  560. // 不加密,但签名
  561. if ((!$isEncrypt) && $isSign) {
  562. $sign = $this->sign($bizContent, $signType);
  563. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?><alipay><response>$bizContent</response><sign>$sign</sign><sign_type>$signType</sign_type></alipay>";
  564. return $response;
  565. }
  566. // 不加密,不签名
  567. $response = "<?xml version=\"1.0\" encoding=\"$charset\"?>$bizContent";
  568. return $response;
  569. }
  570. /**
  571. * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
  572. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  573. **/
  574. public function rsaEncrypt($data, $rsaPublicKeyPem, $charset) {
  575. if($this->checkEmpty($this->alipayPublicKey)){
  576. //读取字符串
  577. $pubKey= $this->alipayrsaPublicKey;
  578. $res = "-----BEGIN PUBLIC KEY-----\n" .
  579. wordwrap($pubKey, 64, "\n", true) .
  580. "\n-----END PUBLIC KEY-----";
  581. }else {
  582. //读取公钥文件
  583. $pubKey = file_get_contents($rsaPublicKeyFilePath);
  584. //转换为openssl格式密钥
  585. $res = openssl_get_publickey($pubKey);
  586. }
  587. ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
  588. $blocks = $this->splitCN($data, 0, 30, $charset);
  589. $chrtext  = null;
  590. $encodes  = array();
  591. foreach ($blocks as $n => $block) {
  592. if (!openssl_public_encrypt($block, $chrtext , $res)) {
  593. echo "<br/>" . openssl_error_string() . "<br/>";
  594. }
  595. $encodes[] = $chrtext ;
  596. }
  597. $chrtext = implode(",", $encodes);
  598. return base64_encode($chrtext);
  599. }
  600. /**
  601. * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
  602. * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
  603. **/
  604. public function rsaDecrypt($data, $rsaPrivateKeyPem, $charset) {
  605. if($this->checkEmpty($this->rsaPrivateKeyFilePath)){
  606. //读字符串
  607. $priKey=$this->rsaPrivateKey;
  608. $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
  609. wordwrap($priKey, 64, "\n", true) .
  610. "\n-----END RSA PRIVATE KEY-----";
  611. }else {
  612. $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
  613. $res = openssl_get_privatekey($priKey);
  614. }
  615. ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
  616. //转换为openssl格式密钥
  617. $decodes = explode(',', $data);
  618. $strnull = "";
  619. $dcyCont = "";
  620. foreach ($decodes as $n => $decode) {
  621. if (!openssl_private_decrypt($decode, $dcyCont, $res)) {
  622. echo "<br/>" . openssl_error_string() . "<br/>";
  623. }
  624. $strnull .= $dcyCont;
  625. }
  626. return $strnull;
  627. }
  628. function splitCN($cont, $n = 0, $subnum = 0, $charset = '') {
  629. //$len = strlen($cont) / 3;
  630. $arrr = array();
  631. for ($i = $n; $i < strlen($cont); $i += $subnum) {
  632. $res = $this->subCNchar($cont, $i, $subnum, $charset);
  633. if (!empty ($res)) {
  634. $arrr[] = $res;
  635. }
  636. }
  637. return $arrr;
  638. }
  639. function subCNchar($str, $start = 0, $length = 0, $charset = "gbk") {
  640. if (strlen($str) <= $length) {
  641. return $str;
  642. }
  643. $re['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
  644. $re['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
  645. $re['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
  646. $re['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
  647. preg_match_all($re[$charset], $str, $match);
  648. $slice = join("", array_slice($match[0], $start, $length));
  649. return $slice;
  650. }
  651. function parserResponseSubCode($request, $responseContent, $respObject, $format) {
  652. if ("json" == $format) {
  653. $apiName = $request->getApiMethodName();
  654. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  655. $errorNodeName = $this->ERROR_RESPONSE;
  656. $rootIndex = strpos($responseContent, $rootNodeName);
  657. $errorIndex = strpos($responseContent, $errorNodeName);
  658. if ($rootIndex > 0) {
  659. // 内部节点对象
  660. $rInnerObject = $respObject->$rootNodeName;
  661. } elseif ($errorIndex > 0) {
  662. $rInnerObject = $respObject->$errorNodeName;
  663. } else {
  664. return null;
  665. }
  666. // 存在属性则返回对应值
  667. if (isset($rInnerObject->sub_code)) {
  668. return $rInnerObject->sub_code;
  669. } else {
  670. return null;
  671. }
  672. } elseif ("xml" == $format) {
  673. // xml格式sub_code在同一层级
  674. return $respObject->sub_code;
  675. }
  676. }
  677. function parserJSONSignData($request, $responseContent, $responseJSON) {
  678. $signData = new SignData();
  679. $signData->sign = $this->parserJSONSign($responseJSON);
  680. $signData->signSourceData = $this->parserJSONSignSource($request, $responseContent);
  681. return $signData;
  682. }
  683. function parserJSONSignSource($request, $responseContent) {
  684. $apiName = $request->getApiMethodName();
  685. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  686. $rootIndex = strpos($responseContent, $rootNodeName);
  687. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  688. if ($rootIndex > 0) {
  689. return $this->parserJSONSource($responseContent, $rootNodeName, $rootIndex);
  690. } else if ($errorIndex > 0) {
  691. return $this->parserJSONSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  692. } else {
  693. return null;
  694. }
  695. }
  696. function parserJSONSource($responseContent, $nodeName, $nodeIndex) {
  697. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
  698. $signIndex = strpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
  699. // 签名前-逗号
  700. $signDataEndIndex = $signIndex - 1;
  701. $indexLen = $signDataEndIndex - $signDataStartIndex;
  702. if ($indexLen < 0) {
  703. return null;
  704. }
  705. return substr($responseContent, $signDataStartIndex, $indexLen);
  706. }
  707. function parserJSONSign($responseJSon) {
  708. return $responseJSon->sign;
  709. }
  710. function parserXMLSignData($request, $responseContent) {
  711. $signData = new SignData();
  712. $signData->sign = $this->parserXMLSign($responseContent);
  713. $signData->signSourceData = $this->parserXMLSignSource($request, $responseContent);
  714. return $signData;
  715. }
  716. function parserXMLSignSource($request, $responseContent) {
  717. $apiName = $request->getApiMethodName();
  718. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  719. $rootIndex = strpos($responseContent, $rootNodeName);
  720. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  721. // $this->echoDebug("<br/>rootNodeName:" . $rootNodeName);
  722. // $this->echoDebug("<br/> responseContent:<xmp>" . $responseContent . "</xmp>");
  723. if ($rootIndex > 0) {
  724. return $this->parserXMLSource($responseContent, $rootNodeName, $rootIndex);
  725. } else if ($errorIndex > 0) {
  726. return $this->parserXMLSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  727. } else {
  728. return null;
  729. }
  730. }
  731. function parserXMLSource($responseContent, $nodeName, $nodeIndex) {
  732. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
  733. $signIndex = strpos($responseContent, "<" . $this->SIGN_NODE_NAME . ">");
  734. // 签名前-逗号
  735. $signDataEndIndex = $signIndex - 1;
  736. $indexLen = $signDataEndIndex - $signDataStartIndex + 1;
  737. if ($indexLen < 0) {
  738. return null;
  739. }
  740. return substr($responseContent, $signDataStartIndex, $indexLen);
  741. }
  742. function parserXMLSign($responseContent) {
  743. $signNodeName = "<" . $this->SIGN_NODE_NAME . ">";
  744. $signEndNodeName = "</" . $this->SIGN_NODE_NAME . ">";
  745. $indexOfSignNode = strpos($responseContent, $signNodeName);
  746. $indexOfSignEndNode = strpos($responseContent, $signEndNodeName);
  747. if ($indexOfSignNode < 0 || $indexOfSignEndNode < 0) {
  748. return null;
  749. }
  750. $nodeIndex = ($indexOfSignNode + strlen($signNodeName));
  751. $indexLen = $indexOfSignEndNode - $nodeIndex;
  752. if ($indexLen < 0) {
  753. return null;
  754. }
  755. // 签名
  756. return substr($responseContent, $nodeIndex, $indexLen);
  757. }
  758. /**
  759. * 验签
  760. * @param $request
  761. * @param $signData
  762. * @param $resp
  763. * @param $respObject
  764. * @throws Exception
  765. */
  766. public function checkResponseSign($request, $signData, $resp, $respObject) {
  767. if (!$this->checkEmpty($this->alipayPublicKey) || !$this->checkEmpty($this->alipayrsaPublicKey)) {
  768. if ($signData == null || $this->checkEmpty($signData->sign) || $this->checkEmpty($signData->signSourceData)) {
  769. throw new Exception(" check sign Fail! The reason : signData is Empty");
  770. }
  771. // 获取结果sub_code
  772. $responseSubCode = $this->parserResponseSubCode($request, $resp, $respObject, $this->format);
  773. if (!$this->checkEmpty($responseSubCode) || ($this->checkEmpty($responseSubCode) && !$this->checkEmpty($signData->sign))) {
  774. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
  775. if (!$checkResult) {
  776. if (strpos($signData->signSourceData, "\\/") > 0) {
  777. $signData->signSourceData = str_replace("\\/", "/", $signData->signSourceData);
  778. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
  779. if (!$checkResult) {
  780. throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
  781. }
  782. } else {
  783. throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
  784. }
  785. }
  786. }
  787. }
  788. }
  789. /**
  790. * 验签,用于后台支付宝配置验证
  791. * @param $request
  792. * @param $signData
  793. * @param $resp
  794. * @param $respObject
  795. * @throws Exception
  796. */
  797. public function checkResponseSign_new($request, $signData, $resp, $respObject) {
  798. if (!$this->checkEmpty($this->alipayPublicKey) || !$this->checkEmpty($this->alipayrsaPublicKey)) {
  799. if ($signData == null || $this->checkEmpty($signData->sign) || $this->checkEmpty($signData->signSourceData)) {
  800. return '支付宝APPID错误!';
  801. }
  802. // 获取结果sub_code
  803. $responseSubCode = $this->parserResponseSubCode($request, $resp, $respObject, $this->format);
  804. if (!$this->checkEmpty($responseSubCode) || ($this->checkEmpty($responseSubCode) && !$this->checkEmpty($signData->sign))) {
  805. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
  806. if (!$checkResult) {
  807. if (strpos($signData->signSourceData, "\\/") > 0) {
  808. $signData->signSourceData = str_replace("\\/", "/", $signData->signSourceData);
  809. $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
  810. if (!$checkResult) {
  811. throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
  812. }
  813. } else {
  814. return '支付宝公钥错误!';
  815. }
  816. }
  817. }
  818. }
  819. }
  820. private function setupCharsets($request) {
  821. if ($this->checkEmpty($this->postCharset)) {
  822. $this->postCharset = 'UTF-8';
  823. }
  824. $str = preg_match('/[\x80-\xff]/', $this->appId) ? $this->appId : print_r($request, true);
  825. if (function_exists('mb_detect_encoding')) {
  826. $this->fileCharset = mb_detect_encoding($str, "UTF-8, GBK") == 'UTF-8' ? 'UTF-8' : 'GBK';
  827. } else {
  828. $this->fileCharset = $this->is_utf8($str) ? 'UTF-8' : 'GBK';
  829. }
  830. }
  831. /**
  832. * 检测字符串是否为UTF8编码 by 小虎哥
  833. * @param string $str 被检测的字符串
  834. * @return boolean
  835. */
  836. private function is_utf8($str = '') {
  837. $c=0; $b=0;
  838. $bits=0;
  839. $len=strlen($str);
  840. for($i=0; $i<$len; $i++){
  841. $c=ord($str[$i]);
  842. if($c > 128){
  843. if(($c >= 254)) return false;
  844. elseif($c >= 252) $bits=6;
  845. elseif($c >= 248) $bits=5;
  846. elseif($c >= 240) $bits=4;
  847. elseif($c >= 224) $bits=3;
  848. elseif($c >= 192) $bits=2;
  849. else return false;
  850. if(($i+$bits) > $len) return false;
  851. while($bits > 1){
  852. $i++;
  853. $b=ord($str[$i]);
  854. if($b < 128 || $b > 191) return false;
  855. $bits--;
  856. }
  857. }
  858. }
  859. return true;
  860. }
  861. // 获取加密内容
  862. private function encryptJSONSignSource($request, $responseContent) {
  863. $parsetItem = $this->parserEncryptJSONSignSource($request, $responseContent);
  864. $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
  865. $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
  866. $bizContent = decrypt($parsetItem->encryptContent, $this->encryptKey);
  867. return $bodyIndexContent . $bizContent . $bodyEndContent;
  868. }
  869. private function parserEncryptJSONSignSource($request, $responseContent) {
  870. $apiName = $request->getApiMethodName();
  871. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  872. $rootIndex = strpos($responseContent, $rootNodeName);
  873. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  874. if ($rootIndex > 0) {
  875. return $this->parserEncryptJSONItem($responseContent, $rootNodeName, $rootIndex);
  876. } else if ($errorIndex > 0) {
  877. return $this->parserEncryptJSONItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  878. } else {
  879. return null;
  880. }
  881. }
  882. private function parserEncryptJSONItem($responseContent, $nodeName, $nodeIndex) {
  883. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
  884. $signIndex = strpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
  885. // 签名前-逗号
  886. $signDataEndIndex = $signIndex - 1;
  887. if ($signDataEndIndex < 0) {
  888. $signDataEndIndex = strlen($responseContent)-1 ;
  889. }
  890. $indexLen = $signDataEndIndex - $signDataStartIndex;
  891. $encContent = substr($responseContent, $signDataStartIndex+1, $indexLen-2);
  892. $encryptParseItem = new EncryptParseItem();
  893. $encryptParseItem->encryptContent = $encContent;
  894. $encryptParseItem->startIndex = $signDataStartIndex;
  895. $encryptParseItem->endIndex = $signDataEndIndex;
  896. return $encryptParseItem;
  897. }
  898. // 获取加密内容
  899. private function encryptXMLSignSource($request, $responseContent) {
  900. $parsetItem = $this->parserEncryptXMLSignSource($request, $responseContent);
  901. $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
  902. $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
  903. $bizContent = decrypt($parsetItem->encryptContent, $this->encryptKey);
  904. return $bodyIndexContent . $bizContent . $bodyEndContent;
  905. }
  906. private function parserEncryptXMLSignSource($request, $responseContent) {
  907. $apiName = $request->getApiMethodName();
  908. $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
  909. $rootIndex = strpos($responseContent, $rootNodeName);
  910. $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
  911. // $this->echoDebug("<br/>rootNodeName:" . $rootNodeName);
  912. // $this->echoDebug("<br/> responseContent:<xmp>" . $responseContent . "</xmp>");
  913. if ($rootIndex > 0) {
  914. return $this->parserEncryptXMLItem($responseContent, $rootNodeName, $rootIndex);
  915. } else if ($errorIndex > 0) {
  916. return $this->parserEncryptXMLItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
  917. } else {
  918. return null;
  919. }
  920. }
  921. private function parserEncryptXMLItem($responseContent, $nodeName, $nodeIndex) {
  922. $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
  923. $xmlStartNode="<".$this->ENCRYPT_XML_NODE_NAME.">";
  924. $xmlEndNode="</".$this->ENCRYPT_XML_NODE_NAME.">";
  925. $indexOfXmlNode=strpos($responseContent,$xmlEndNode);
  926. if($indexOfXmlNode<0){
  927. $item = new EncryptParseItem();
  928. $item->encryptContent = null;
  929. $item->startIndex = 0;
  930. $item->endIndex = 0;
  931. return $item;
  932. }
  933. $startIndex=$signDataStartIndex+strlen($xmlStartNode);
  934. $bizContentLen=$indexOfXmlNode-$startIndex;
  935. $bizContent=substr($responseContent,$startIndex,$bizContentLen);
  936. $encryptParseItem = new EncryptParseItem();
  937. $encryptParseItem->encryptContent = $bizContent;
  938. $encryptParseItem->startIndex = $signDataStartIndex;
  939. $encryptParseItem->endIndex = $indexOfXmlNode+strlen($xmlEndNode);
  940. return $encryptParseItem;
  941. }
  942. function echoDebug($content) {
  943. if ($this->debugInfo) {
  944. echo "<br/>" . $content;
  945. }
  946. }
  947. }