GET方式 base64传值乱码问题 2016-08-26- 来源:原创- 浏览:558 当用 GET形式传递值的时候,+号会被替换成空格,所以需要转一下。$getStr = base64_decode(str_replace(" ","+",$_GET['getStr']));