Lines Matching refs:base64_decode
2 Test base64_decode() function : basic functionality - strict vs non-strict with non-base64 chars.
7 var_dump(base64_decode($noWhiteSpace));
8 var_dump(base64_decode($noWhiteSpace, false));
9 var_dump(base64_decode($noWhiteSpace, true));
11 echo "\nWhitespace does not affect base64_decode, even with \$strict===true:\n";
14 var_dump(base64_decode($withWhiteSpace));
15 var_dump(base64_decode($withWhiteSpace, false));
16 var_dump(base64_decode($withWhiteSpace, true));
20 var_dump(base64_decode($badChars));
21 var_dump(base64_decode($badChars, false));
22 var_dump(base64_decode($badChars, true));
32 Whitespace does not affect base64_decode, even with $strict===true: