0

我有一个javascript代码。我想把它转换成php。我不知道如何转换:str.toString(CryptoJS.enc.Base64)

function base64URLEncode(str) {
  return  str.toString(CryptoJS.enc.Base64).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_');
}

太感谢了。

4

1 回答 1

0

那么你想在 PHP 中解码 base64 吗?

https://www.php.net/manual/de/function.base64-decode.php

当然还有编码: https ://www.php.net/manual/de/function.base64-encode.php

于 2020-11-05T21:28:06.180 回答