php出现base64_decode乱码怎么解决

问题描述:用php做接口,用base64加密后再base64_decode解密出现了乱码,下面编程教程网小编带大家了解一下正确的写法。

正确代码如下:

$encoded = str_replace(' ','+',$encoded);
$decoded = ""; 
for ($i=0; $i < ceil(strlen($encoded)/256); $i++) 
   $decoded = $decoded . base64_decode(substr($encoded,$i*256,256));
以上是编程学习网小编为您介绍的“php出现base64_decode乱码怎么解决”的全面内容,想了解更多关于 php入门 内容,请继续关注编程基础学习网。

本文标题为:php出现base64_decode乱码怎么解决

基础教程推荐