How to check if a string is base64 valid in PHP
Asked Answered
C

21

91

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

Clonus answered 25/11, 2010 at 14:29 Comment(2)
This is probably a duplicate.Bearden
Beware of the base64_encode(base64_decode($data, true)) === $data technique. See the comments under: Amir's answer @ Detect base64 encoding in PHP? which bang on about how many ways it fails and why.Previse
P
149

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 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';
}
Plotkin answered 29/5, 2012 at 10:11 Comment(14)
Why will that not work? the string 'node' encodes to bm9kZQ== (I've tested it)Plotkin
@Carniola That is because "test" is a perfectly fine base64 string. It uses only base64 characters (a-z, A-Z, 0-9) and it's length is cleanly divisible by four. Those are the only requirements for a valid base64 string. What did you expect to happen when entering "test"?Aufmann
@Plotkin Do you have any idea how to find what is wrong with it if your snippet returns not valid? I used several online encoders to encode a png image, all return a different base64 string and all are invalid according to this snippet.Aufmann
Worked like a charm, even with Laravel's crypt() library.Lavern
@Aufmann if you get different results when base64 encoding the image, then something is wrong, the same data should encode the same way each time.Plotkin
@Plotkin I know right ^^, I'm not sure what I was working on anymore thoughAufmann
This will generate a warning if $data doesn't have valid characters because the second base64_decode will return FALSE and the first one will be enconding false as bool. base64_decode( false ) === $data so I recommend to put an @ to prevent a warning.Overeager
@Caraway assuming you mean "123412341234" as a string then it works, that's a valid base64 string, if you mean the integer, then it's not a string so won't work.Plotkin
ok, so it's fine to base64 decode that then run decryption on it? i think not.Caraway
@Caraway base64 is not encryption, it's a way of encoding data such that it is transmittable using mechanisms which only support the ASCII charsetPlotkin
I understand that @PottyBert. The issue is that in my specific application of this code, I need to base64 decode something that is sometimes not encrypted... some is not base64 decoded. There is no "good way" to tell whether something is base64 encoded was my point.Caraway
@Caraway But that's not what this question was about, it was about determining if the data is valid base64, which the string "123412341234" is, just because that's not good enough for your purposes, doesn't mean that it isn't valid base64. In your instance, if you control the encoding of the data, you can mark it in some fashion prior to base64 encoding, that way you CAN determine whether you should pass it through decryption after decodingPlotkin
NOTE: Running base64_encode(base64_decode($data, true)) on a string such as "test" will true, because it is multiples of 4 and only contain [A-Z, a-z, 0-9, and + /]. If the rest length is less than 4, the string is padded with '=' characters, so to solve this problem, i run base64_decode twice (with strict mode) and base64_encode twice as well... This will evaluate all type of none base64 to false. if ( base64_encode(base64_encode(base64_decode(base64_decode($data, true)))) === $data)Casimir
talking about "old topic", well.. here we are in 2022, 10 years later is still looking for this :))Wanhsien
I
32

You can use this function:

 function is_base64($s)
{
      return (bool) preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $s);
}
Impasse answered 22/6, 2012 at 10:13 Comment(4)
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.Astrogation
I'll leave a note here: be careful of the regexp subject max size secure.php.net/manual/en/pcre.constants.php#118538 In PHP 7 at least you won't be able to check a base64-encoded image that way (with default PHP settings)Philpott
This does not detect an invalid base 64 string it just checks if the character set and formatting is correct. simply add a 1 to the end of any non-padded base64 encoded string and it will decode simply ignoring the appended 1. strict checking does not work in this instance either.Ulaulah
@Ulaulah Well, if the length of non-padded base64 encoded string is a multiple of 4 then any other character added to the end of the string should be ignored. But this is OK.Mauriciomaurie
L
14

Just for strings, you could use this function, that checks several base64 properties before returning true:

function is_base64($s){
    // Check if there are valid base64 characters
    if (!preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $s)) return false;

    // Decode the string in strict mode and check the results
    $decoded = base64_decode($s, true);
    if(false === $decoded) return false;

    // Encode the string again
    if(base64_encode($decoded) != $s) return false;

    return true;
}
Leporid answered 22/5, 2014 at 15:11 Comment(3)
This is very similar to my own implementation. First checks for valid chars then checks for decode/encode string and compare with original one.Benally
Shortest ver function is_base64($s) { $decoded = base64_decode($s, true); return preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $s) && false !== $decoded && base64_encode($decoded) == $s; }Ashy
For those considering the use of the Andrew's line of code, in backend (code not running in the browser) I recommend legibility (while keeping the performance) vs all code in the same line. And use comments! Don't increase the technical debt!!!Leporid
T
7

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.

Taejon answered 25/11, 2010 at 14:33 Comment(4)
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.Varmint
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.Cognizance
This returns "and" as valid. "and" is not valid (base64 encoding should have a number of characters that is divisilble by 4). base64_decode will decode invalid strings.Peterec
@liljoshu As for "divisible by 4", that would be true for padded base64 strings, but they don't have to be padded.Mauriciomaurie
M
4

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.

Mane answered 25/11, 2010 at 14:29 Comment(2)
Making CW because this is a double-dupeMane
Downvote because of same reasons like another similar answer: It only checks wether the string has characters outside of the base64 alphabet.Turin
K
4

I tried the following:

  • base64 decode the string with strict parameter set to true.
  • base64 encode the result of previous step. if the result is not same as the original string, then original string is not base64 encoded
  • if the result is same as previous string, then check if the decoded string contains printable characters. I used the php function ctype_print to check for non printable characters. The function returns false if the input string contains one or more non printable characters.

The following code implements the above steps:

public function IsBase64($data) {
    $decoded_data = base64_decode($data, true);
    $encoded_data = base64_encode($decoded_data);
    if ($encoded_data != $data) return false;
    else if (!ctype_print($decoded_data)) return false;

    return true;
}

The above code will may return unexpected results. For e.g for the string "json" it will return false. "json" may be a valid base64 encoded string since the number of characters it has is a multiple of 4 and all characters are in the allowed range for base64 encoded strings. It seems we must know the range of allowed characters of the original string and then check if the decoded data has those characters.

Kinney answered 28/7, 2016 at 5:39 Comment(0)
F
4

I write this method is working perfectly on my projects. When you pass the base64 Image to this method, If it valid return true else return false. Let's try and let me know any wrong. I will edit and learn in the feature.

/**
 * @param $str
 * @return bool
 */
private function isValid64base($str){
    if (base64_decode($str, true) !== false){
        return true;
    } else {
        return false;
    }
}
Flitch answered 12/7, 2019 at 10:41 Comment(0)
D
3

This is a really old question, but I found the following approach to be practically bullet proof. It also takes into account those weird strings with invalid characters that would cause an exception when validating.

    public static function isBase64Encoded($str) 
{
    try
    {
        $decoded = base64_decode($str, true);

        if ( base64_encode($decoded) === $str ) {
            return true;
        }
        else {
            return false;
        }
    }
    catch(Exception $e)
    {
        // If exception is caught, then it is not a base64 encoded string
        return false;
    }

}

I got the idea from this page and adapted it to PHP.

Damali answered 24/11, 2015 at 19:45 Comment(1)
string like "ciao" will be decoded successfully into something like: "r&�". It's not a bulletproof method.Griceldagrid
W
3

if u are doing api calls using js for image/file upload to the back end this might help

function is_base64_string($string)  //check base 64 encode 
{
  // Check if there is no invalid character in string
  if (!preg_match('/^(?:[data]{4}:(text|image|application)\/[a-z]*)/', $string)){
    return false;
  }else{
    return true;
  }

}
Wrath answered 16/4, 2020 at 12:59 Comment(0)
H
2

Alright guys... finally I have found a bullet proof solution for this problem. Use this below function to check if the string is base64 encoded or not -

    private function is_base64_encoded($str) {

       $decoded_str = base64_decode($str);
       $Str1 = preg_replace('/[\x00-\x1F\x7F-\xFF]/', '', $decoded_str);
       if ($Str1!=$decoded_str || $Str1 == '') {
          return false;
       }
       return true;
    }
Heyman answered 3/2, 2020 at 12:26 Comment(2)
The only one that is actually validMollescent
Current method does not work properly with special signs encoded by base64, for example: \u001d, \u005d, etc.Thenceforward
C
1

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;
}
Carlyle answered 2/5, 2013 at 6:10 Comment(0)
F
1

I code a solution to validate images checking the sintaxy

$image = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAABfVBMVEUAAAAxMhQAoIpFLCTimAE2IRs0IBodEg4OJyEAnYcAmoUAjnoALyn5rgNJLydEKyM5lWFFLCTuogI/JyBAKCHZnQoAlIAAkn48JR6fYgCIVACDUACPbAsAW06IWgAaDw0jFQscEQ4Am4XIfQDGewDhlwHelQEAi3gAe2oAd2cAXE8gFBAeEg8AVEgAtJwAsZn/vhMAuJ//xyMAu6BfQTf/wxv9wRlcPjVhQjj/vBBdQDb/xR9oSD1iRDlWOjH9xSL/uQr+twhkRTplRjxZPDPZpydILydAQD+pezNjRTNQNS3tuCZGLSX4sQn/tQTllgDhkgAArZUAqJFvTUD/wRgGtpp2m0aPaTl+azOIcjGkhS6OaS1ONCvNnirHmSrnsifHnSfFjyemfCfcqSa/jyLwuR/ptB/MmRxiPhnpqRX1sxHzqwnCfgb+tQTYjALnmQH2qQDzpQDejgAnsYQnsYNwTkBlRTtfQi9eQS+1kCy2kSuFYSuEYSvkpRfrqxQPeVhkAAAALnRSTlMADPz0qnhzNBPry5kH/vr36ubKxLy4sKmifVVNQT84Ih4Y2aWloqKMgHdJPDwse8ZSvQAAAbVJREFUOMuV0uVzggAYx3Gsbca6u3vDqSDqBigD25nrLrvX+bfvMSeId9vnBXD3+97zCuQ/ZhUDvV1dvQOKWfFdIWOZHfDMyhRi+4ibZHZLwS5Dukea97YzzAQFYEgTdtYm3DtkhAUKkmFI0mTCCFmH8ICbsEBRhmEWwi080U+xBNwApZlgqX7+rummWJcLEkAQLhdLdWt4wbSXOqX1Hu784uKc8+jpU8o7zQva7RSnb8BR9nZesGF/oelLT2X1XNL0q31dcOGDPnwKO7eBMxw+pD8FF2a8N9vcyfttKbh9O+HwG+8MLxiL3+FXDsc9Du4djiv8Lj7GC0bTMTx6dGzEgfH4KIrH0qO8YDyQjESMvyLJwDjCs5DaKsvlzOV3ah4RkFcCM+wlckRoymcG107ntRn4ppAmSzar9Tvh830lrFbbItJM0meDBcCzT4KIFfLOzB7IdMphFzUxWMjnC4MToqNkbWVY1RPw+wM9quHVSY1gnhyShlCd4aHo9xcfDTptSKnebPxjh0Kooewgmz2ofKFStaS+z2l1Nfv79c+gqlaog6io4HI1UKItKKuBVNuCFPmDH12fd4lDaGbkAAAAAElFTkSuQmCC';
$allowedExtensions = ['png', 'jpg', 'jpeg'];

// check if the data is empty
if (empty($image)) {
    echo "Empty data";
}

// check base64 format
$explode = explode(',', $image);
if(count($explode) !== 2){
    echo "This string isn't sintaxed as base64";
}
//https://mcmap.net/q/234481/-how-to-check-if-a-string-is-base64-valid-in-php
if (!preg_match('%^[a-zA-Z0-9/+]*={0,2}$%', $explode[1])) {
    echo "This string isn't sintaxed as base64";
}

// check if type is allowed
$format = str_replace(
        ['data:image/', ';', 'base64'], 
        ['', '', '',], 
        $explode[0]
);
if (!in_array($format, $allowedExtensions)) {
    echo "Image type isn't allowed";
}
echo "This image is base64";

But a safe way is using Intervention

use Intervention\Image\ImageManagerStatic;
try {
    ImageManagerStatic::make($value);
    return true;
} catch (Exception $e) {
    return false;
}
Folliculin answered 19/12, 2018 at 14:20 Comment(0)
P
1

MOST ANSWERS HERE ARE NOT RELIABLE

In fact, there is no reliable answer, as many non-base64-encoded text will be readable as base64-encoded, so there's no default way to know for sure.

Further, it's worth noting that base64_decode will decode many invalid strings For exmaple, and is not valid base64 encoding, but base64_decode WILL decode it. As jw specifically. (I learned this the hard way)

That said, your most reliable method is, if you control the input, to add an identifier to the string after you encode it that is unique and not base64, and include it along with other checks. It's not bullet-proof, but it's a lot more bullet resistant than any other solution I've seen. For example:

function my_base64_encode($string){
  $prefix = 'z64ENCODEDz_';
  $suffix = '_z64ENCODEDz';
  return $prefix . base64_encode($string) . $suffix;
}

function my_base64_decode($string){
  $prefix = 'z64ENCODEDz_';
  $suffix = '_z64ENCODEDz';
  if (substr($string, 0, strlen($prefix)) == $prefix) {
    $string = substr($string, strlen($prefix));
  }
  if (substr($string, (0-(strlen($suffix)))) == $suffix) {
    $string = substr($string, 0, (0-(strlen($suffix))));
  }
      return base64_decode($string);
}

function is_my_base64_encoded($string){
  $prefix = 'z64ENCODEDz_';
  $suffix = '_z64ENCODEDz';
  if (strpos($string, 0, 12) == $prefix && strpos($string, -1, 12) == $suffix && my_base64_encode(my_base64_decode($string)) == $string && strlen($string)%4 == 0){
    return true;
  } else {
    return false;
  }
}
Peterec answered 16/10, 2019 at 17:27 Comment(3)
Are you missing $string inside function argument at second line? base64_encode($string) instead of base64_encode()?Archoplasm
And, actual decoding in line 5? base64_decode(rtrim(ltrim($string, "z64ENCODEDz_"), "_z64ENCODEDz")) instead of rtrim(ltrim($string, "z64ENCODEDz_"), "_z64ENCODEDz")?Archoplasm
You're right. Also I should have been using a substr instead of a trim. Fixed that too.Peterec
Z
1

I have found my solution by accident.

For those who use base64_encode(base64_decode('xxx')) to check may found that some time it is not able to check for string like test, 5555.

If the invalid base 64 string was base64_decode() without return false, it will be dead when you try to json_encode() anyway. This because the decoded string is invalid.
So, I use this method to check for valid base 64 encoded string.

Here is the code.

/**
 * Check if the given string is valid base 64 encoded.
 *
 * @param string $string The string to check.
 * @return bool Return `true` if valid, `false` for otherwise.
 */
function isBase64Encoded($string): bool
{
    if (!is_string($string)) {
        // if check value is not string.
        // base64_decode require this argument to be string, if not then just return `false`.
        // don't use type hint because `false` value will be converted to empty string.
        return false;
    }

    $decoded = base64_decode($string, true);
    if (false === $decoded) {
        return false;
    }

    if (json_encode([$decoded]) === false) {
        return false;
    }

    return true;
}// isBase64Encoded

And here is tests code.

// each tests value must be 'original string' => 'base 64 encoded string'
$testValues = [
    555 => 'NTU1',
    5555 => 'NTU1NQ==',
    'hello' => 'aGVsbG8=',
    'สวัสดี' => '4Liq4Lin4Lix4Liq4LiU4Li1',
    'test' => 'dGVzdA==',
];


foreach ($testValues as $invalid => $valid) {
    if (isBase64Encoded($invalid) === false) {
        echo '<strong>' . $invalid . '</strong> is invalid base 64<br>';
    } else {
        echo '<strong style="color:red;">Error:</strong>';
        echo '<strong>' . $invalid . '</strong> should not be valid base 64<br>';
    }

    if (isBase64Encoded($valid) === true) {
        echo '<strong>' . $valid . '</strong> is valid base 64<br>';
    } else {
        echo '<strong style="color:red;">Error:</strong>';
        echo '<strong>' . $valid . '</strong> should not be invalid base 64<br>';
    }

    echo '<br>';
}

Tests result:

555 is invalid base 64
NTU1 is valid base 64

5555 is invalid base 64
NTU1NQ== is valid base 64

hello is invalid base 64
aGVsbG8= is valid base 64

สวัสดี is invalid base 64
4Liq4Lin4Lix4Liq4LiU4Li1 is valid base 64

test is invalid base 64
dGVzdA== is valid base 64

Zsazsa answered 29/10, 2021 at 19:41 Comment(1)
I tried many solutions but this one worked form me.Inhambane
M
0

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

Molli answered 25/11, 2010 at 14:32 Comment(0)
G
0

i know that i resort a very old question, and i tried all of the methods proposed; i finally end up with this regex that cover almost all of my cases:

$decoded = base64_decode($string, true);
if (0 < preg_match('/((?![[:graph:]])(?!\s)(?!\p{L}))./', $decoded, $matched)) return false;

basically i check for every character that is not printable (:graph:) is not a space or tab (\s) and is not a unicode letter (all accent ex: èéùìà etc.)

i still get false positive with this chars: £§° but i never use them in a string and for me is perfectly fine to invalidate them. I aggregate this check with the function proposed by @merlucin

so the result:

function is_base64($s)
{
  // Check if there are valid base64 characters
  if (!preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $s)) return false;

  // Decode the string in strict mode and check the results
  $decoded = base64_decode($s, true);
  if(false === $decoded) return false;

  // if string returned contains not printable chars
  if (0 < preg_match('/((?![[:graph:]])(?!\s)(?!\p{L}))./', $decoded, $matched)) return false;

  // Encode the string again
  if(base64_encode($decoded) != $s) return false;

  return true;
}
Griceldagrid answered 21/4, 2016 at 9:43 Comment(0)
A
0

To validate without errors that someone sends a clipped base64 or that it is not an image, use this function to check the base64 and then if it is really an image

function check_base64_image($base64) {
try {
    if (base64_encode(base64_decode($base64, true)) === $base64) {
        $img = imagecreatefromstring(base64_decode($base64, true));
        if (!$img) {
            return false;
        }
        imagepng($img, 'tmp.png');
        $info = getimagesize('tmp.png');
        unlink('tmp.png');
        if ($info[0] > 0 && $info[1] > 0 && $info['mime']) {
            return true;
        }
    }
} catch (Exception $ex) {
    return false;
} }
Astyanax answered 2/8, 2022 at 18:48 Comment(0)
H
0
function fromBase64(string $string, bool $decode = true): bool|string {
  $decoded_data = base64_decode($string, true);
  return ((base64_encode($decoded_data) === $string) AND ctype_print($decoded_data)) ? ($decode?$decoded_data:true) : ($decode?$string:false);
}
    
function toBase64(string $string, bool $encode = true): bool|string {
  $encoded_data = base64_encode($string);
  $decoded_data = base64_decode($string, true);
  return ((base64_encode($decoded_data) === $string) AND ctype_print($decoded_data)) ? ($encode?$string:false) : ($encode?$encoded_data:true);
}
  • $encode or $decode to true returns (encoded, decoded) : string
  • $encode or $decode to false returns : bool
Hose answered 9/6, 2024 at 9:53 Comment(0)
Z
-1

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.

Zeist answered 25/11, 2010 at 14:32 Comment(0)
C
-1

I am using this approach. It expects the last 2 characters to be ==

substr($buff, -2, 1) == '=' && substr($buff, -1, 1) == '=')

Update: I ended up doing another check if the one above fails base64_decode($buff, true)

Corley answered 14/1, 2014 at 3:52 Comment(3)
FYI: substr($buff, -2) === '==') will be the same and faster.Carniola
To better say what SangamAngre said, there may be only a single "=" at the end depending on the padding needed, be it 8bit padding or 16bit padding.Youlandayoulton
Having == at the end is a necessary but not sufficient condition to be a valid Base64 string.Womanlike
P
-3

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

Philosophy answered 25/11, 2010 at 14:32 Comment(1)
the statement is incorrent. As documentation says: "if $string s not valid base64 then function base64_decode($string, true) will return FALSE". So some invalid base64 string like "ciao" for example will be decoded as "r&�"Griceldagrid

© 2022 - 2025 — McMap. All rights reserved.