<?php
//base64数据在post过程中加号会变成空格,这里将空格替换回加号,恢复数据成原来的样子。
function x($base64){
return(str_replace(" ","+",urldecode($base64)));
}
?>
<?php
//base64数据在post过程中加号会变成空格,这里将空格替换回加号,恢复数据成原来的样子。
function x($base64){
return(str_replace(" ","+",urldecode($base64)));
}
?>