用PHP对字符串进行Base64编码和解码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP对字符串进行Base64编码和解码相关的知识,希望对你有一定的参考价值。
Encodes the given data with MIME base64. Base64-encoded data takes about 33% more space than the original data.
<?php function base64url_encode ($text){ ($text); return $base64url; } function base64url_decode ($text){ ($base64url); return $base64; } ?>
以上是关于用PHP对字符串进行Base64编码和解码的主要内容,如果未能解决你的问题,请参考以下文章