How to check if a string is base64 valid in PHP(如何检查字符串在 PHP 中是否为 base64 有效)
问题描述
我有一个字符串,想用 PHP 测试它是否是有效的 base64 编码.
I have a string and want to test using PHP if it's a valid base64 encoded or not.
推荐答案
我意识到这是一个老话题了,但是使用 strict 参数不一定有帮助.
I realise that this is an old topic, but using the strict parameter isn't necessarily going to help.
对诸如我不是 base 64 编码"之类的字符串运行 base64_decode 不会返回 false.
Running base64_decode on a string such as "I am not base 64 encoded" will not return false.
如果您尝试使用 strict 解码字符串并使用 base64_encode 重新编码,您可以将结果与原始数据进行比较以确定它是否是有效的 bas64 编码值:
If however you try decoding the string with strict and re-encode it with base64_encode, you can compare the result with the original data to determine if it's a valid bas64 encoded value:
if ( base64_encode(base64_decode($data, true)) === $data){
echo '$data is valid';
} else {
echo '$data is NOT valid';
}
这篇关于如何检查字符串在 PHP 中是否为 base64 有效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何检查字符串在 PHP 中是否为 base64 有效
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01