12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * Created by PhpStorm.
- * User: dingxiang-inc
- * Date: 2017/8/19
- * Time: 下午1:39
- */
- namespace common\thirdparty\dingxianginc\sdk\php\util;
- class SignUtil
- {
- private static $EVENT_CODE = "eventCode";
- private static $FLAG = "flag";
- public static function sign($appSecret, $ctuRequest)
- {
- $sortedParams = self::sortedParams($ctuRequest);
- return md5($appSecret . $sortedParams . $appSecret);
- }
- private static function sortedParams($ctuRequest)
- {
- $eventCode = $ctuRequest->eventCode;
- $flag = $ctuRequest->flag;
- $data = $ctuRequest->data;
- ksort($data);
- $paramStr = self::$EVENT_CODE . $eventCode . self::$FLAG . $flag;
- foreach ($data as $key => $value) {
- if (is_null($value)) {
- $paramStr .= $key . "null";
- } else {
- $paramStr .= $key . $value;
- }
- }
- return $paramStr;
- }
- }
|