我有一个javascript代码。我想把它转换成php。我不知道如何转换:str.toString(CryptoJS.enc.Base64)
function base64URLEncode(str) {
return str.toString(CryptoJS.enc.Base64).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_');
}
太感谢了。
我有一个javascript代码。我想把它转换成php。我不知道如何转换:str.toString(CryptoJS.enc.Base64)
function base64URLEncode(str) {
return str.toString(CryptoJS.enc.Base64).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_');
}
太感谢了。
那么你想在 PHP 中解码 base64 吗?
https://www.php.net/manual/de/function.base64-decode.php
当然还有编码: https ://www.php.net/manual/de/function.base64-encode.php