Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP で base64 文字列をデコードしようとしています。
たとえば、次のようにして Python スクリプトでこれを行うことができます。
s = "0CC0QFjAA" base64.b64decode(str(s)+'=====', '_-');
PHPでbase64文字列をデコードするにはどうすればよいですか?
PHP 関数は と呼ばれbase64_decodeます。あなたはそれを次のように呼ぶことができますbase64_decode($s);
base64_decode
base64_decode($s);