mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
8 lines
162 B
PHP
8 lines
162 B
PHP
--TEST--
|
|
Bug #72264 (base64_decode $strict fails with whitespace between padding)
|
|
--FILE--
|
|
<?php
|
|
var_dump(base64_decode("VV= =", true));
|
|
--EXPECT--
|
|
string(1) "U"
|