Lines Matching refs:base64_decode
2 Test base64_decode() function : basic functionality - strict vs non-strict with non-base64 chars.
5 /* Prototype : proto string base64_decode(string str[, bool strict])
13 var_dump(base64_decode($noWhiteSpace));
14 var_dump(base64_decode($noWhiteSpace, false));
15 var_dump(base64_decode($noWhiteSpace, true));
17 echo "\nWhitespace does not affect base64_decode, even with \$strict===true:\n";
20 var_dump(base64_decode($withWhiteSpace));
21 var_dump(base64_decode($withWhiteSpace, false));
22 var_dump(base64_decode($withWhiteSpace, true));
26 var_dump(base64_decode($badChars));
27 var_dump(base64_decode($badChars, false));
28 var_dump(base64_decode($badChars, true));
38 Whitespace does not affect base64_decode, even with $strict===true: