控制器通过$_GET['ticket']获取ticket参数,如果ticket参数是urlencode的数据,thinkphp会进行urldecode,却把%2B变成了空格,坑。

$GET_TICKET = str_replace(" ","+",trim($_GET['ticket']));