微信提交验证接口源代码(php)

//1.将timestamp,nonce,token按字典序排序

$timestamp = $GET[‘timestamp’];

$nonce        = $GET[‘nonce’];

$token         = ‘weixin’;

$signature   = $_GET[‘signature’];

$array          = array( $timestamp, $nonce, $token);

sort( $array );

你可能感兴趣的:(微信提交验证接口源代码(php))