Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a string and want to test using PHP if it's a valid base64 encoded or not

Thanks in advance

share|improve this question
This is probably a duplicate. – Gumbo Nov 25 '10 at 14:33
1  
Possible duplicates: stackoverflow.com/questions/2556345/…, stackoverflow.com/questions/271657/…, et al. – Gumbo Nov 25 '10 at 14:36

8 Answers

I realise that this is an old topic, but using the strict parameter isn't necessarily going to help.

Running base64_decode on a string such as "I am not base 64 encoded" will not return false.

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 valid a bas64 encoded value:

if ( base64_encode(base64_decode($data)) === $data){
    echo '$data is valid';
} else {
    echo '$data is NOT valid';
}
share|improve this answer

This code should work, as the decode function returns FALSE if the string is not valid:

if (base64_decode($mystring, true)) {
    // is valid
} else {
    // not valid
}

You can read more about the base64_decode function in the documentation.

share|improve this answer
2  
downvote because this is not the right way to determine if the string is encoded as base64. It only checks wether the string has characters outside of the base64 alphabet. As Kris said, the string "I am not base 64 encoded" does not return false with this method. – Maurice Nov 7 '12 at 14:33
1  
Maurice is correct here. Please do not rely on this answer. It is not correct and will not determine whether a string is base64 encoded. From documentation: strict: Returns FALSE if input contains character from outside the base64 alphabet. I don't know why PHP decided to handle it this way, but regardless, it doesn't truly detect base64 encoding. Kris' answer is correct. – Ben D Jan 3 at 23:26

You can use this function:

 function is_base64($s)
{
      return (bool) preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $s);
}
share|improve this answer
I think this is closest to the best way to detect this. base64_decode(<string, True); will decode about anything even if it's not right. There might be more that could be added here though. – Thomas Schultz Jan 14 at 20:39

I think the only way to do that is to do a base64_decode() with the $strict parameter set to true, and see whether it returns false.

share|improve this answer
Making CW because this is a double-dupe – Pekka 웃 Nov 25 '10 at 14:41
That works! Thank you – Alias Nov 25 '10 at 15:50

You can just send the string through base64_decode (with $strict set to TRUE), it will return FALSE if the input is invalid.

You can also use f.i. regular expressions see whether the string contains any characters outside the base64 alphabet, and check whether it contains the right amount of padding at the end (= characters). But just using base64_decode is much easier, and there shouldn't be a risk of a malformed string causing any harm.

share|improve this answer

base64_decode() should return false if your base64 encoded data is not valid.

share|improve this answer

If data is not valid base64 then function base64_decode($string, true) will return FALSE.

share|improve this answer

Old topic, but I've found this function and It's working:

function checkBase64Encoded($encodedString) {
$length = strlen($encodedString);

// Check every character.
for ($i = 0; $i < $length; ++$i) {
$c = $encodedString[$i];
if (
($c < '0' || $c > '9')
&& ($c < 'a' || $c > 'z')
&& ($c < 'A' || $c > 'Z')
&& ($c != '+')
&& ($c != '/')
&& ($c != '=')
) {
// Bad character found.
return false;
}
}
// Only good characters found.
return true;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.