您好,登錄后才能下訂單哦!
小編給大家分享一下解決php中base64亂碼的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
php base64亂碼是因?yàn)橛幸恍┲形淖址?,用GET形式傳過來的時候,“+”號會被替換成空格而導(dǎo)致亂碼的,其解決辦法就是進(jìn)行替換再解密即可。
PHP base64編碼后解碼亂碼的解決辦法
這篇文章主要介紹了PHP base64編碼后解碼亂碼的解決辦法,導(dǎo)致亂碼的原因就是base64編碼后包含一些特殊字符,替換一下就可以了,需要的朋友可以參考下
在用PHP做東西的時候發(fā)現(xiàn)了一個問題,可以簡單的歸結(jié)為亂碼的問題,但是這個問題不是函數(shù)本身造成的。來看看罪魁禍?zhǔn)资钦l。
嫌疑人:base64_encode 和 base64_decode
罪行:我寫了一個跳轉(zhuǎn)和提示函數(shù),接收提示信息后跳轉(zhuǎn)到指定的頁面,但是跳轉(zhuǎn)提示時漢字亂碼。
跳轉(zhuǎn)模版代碼如下:
代碼如下:
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="author" content="王健 wj@yurendu.com" /> <title>跳轉(zhuǎn)提示</title> <style type="text/css"> *{ padding: 0; margin: 0; } body{ background: #fff; font-family: '微軟雅黑'; color: #333; font-size: 16px; text-align:center; } .system-message{ width:600px; margin:150px auto 0 auto; background:#f8f8f8; border:1px solid #ccc;-webkit-border-radius: 8px;-moz-border-radius: 8px;border-radius: 8px;-webkit-box-shadow: #666 0px 0px 10px;-moz-box-shadow: #666 0px 0px 10px;box-shadow: #666 0px 0px 10px;} .system-message h2{ font-size:30px; font-weight:normal; height:100px; line-height:100px; color:#c60;} .system-message .jump{ padding: 40px 0;} .system-message .jump a{ color: #333;} .system-message .success,.system-message .error{ height:60px; line-height:70px; font-size: 18px; color:#900;} .system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none} </style> </head> <body> <div class="system-message"> <?php if( $_GET['success'] ){?> <h2>:) 恭喜!</h2> <p class="success"><?php echo base64_decode($_GET['message']); ?></p> <?php }else{?> <h2>:( 出錯了!</h2> <p class="error"><?php echo base64_decode($_GET['message']); ?></p> <?php }?> <p class="detail"></p> <p class="jump">系統(tǒng)將在 <b id="wait"><?php echo $_GET['time']; ?></b> 后跳轉(zhuǎn),可直接 <a id="href" href="<?php echo base64_decode($_GET['url']); ?>">點(diǎn)此跳轉(zhuǎn)</a></p> </div><script type="text/javascript">(function(){var wait = document.getElementById('wait'),href = document.getElementById('href').href;var interval = setInterval(function(){ var time = --wait.innerHTML; if(time <= 0) { location.href = href; clearInterval(interval); };}, 1000);})();</script></body></html>
PHP redirect函數(shù)定義如下:
代碼如下:
/* 提醒后跳轉(zhuǎn) */ function _alert( $success=true, $message='success', $time='3', $url='/'){ header('Location:/include/redirect.php?success='.$success.'&message='.base64_encode($message).'&time='.$time.'&url='.base64_encode($url)); exit; }
假如在PHP中這樣調(diào)用函數(shù)的話:
代碼如下:
$query = "update content set bid='$clean[bid]',title='$clean[title]',content='$clean[content]',path='$clean[path]' where id=".$clean['id']; if( mysql_query($query) ){ _alert(1,'修改成功',3,'/admin/manage.php'); }else{ _alert(false,'修改失敗'.mysql_error(),5,'/admin/manage.php'); }
你就會看到,“修改成功”或者是“修改失敗”這幾個漢字亂碼了。
為什么?
有時候用base64_encode加密后,以GET的形式傳到其他頁面,用base64_decode解密的時候,出現(xiàn)亂碼。
遇到這個問題的時候,我就納悶了,為什么有一些能正確解密,但是有一些卻出現(xiàn)亂碼呢?
后來經(jīng)過檢查,發(fā)現(xiàn)有一些中文字符,用GET形式傳過來的時候,+號會被替換成空格。
為了防止出現(xiàn)亂碼的情況,我做了一步替換,然后再解密,果然,亂碼的問題,不復(fù)存在了!
現(xiàn)在問題已經(jīng)很簡單了,只要多寫一步就好了
代碼如下:
$str = base64_decode(str_replace(" ","+",$_GET['str']));
看完了這篇文章,相信你對解決php中base64亂碼的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。