i have a string and want to test using PHP if it's a valid base64 encoded or not
Thanks in advance
|
i have a string and want to test using PHP if it's a valid base64 encoded or not Thanks in advance |
|||||||
|
|
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:
|
|||
|
|
|
This code should work, as the decode function returns FALSE if the string is not valid:
You can read more about the base64_decode function in the documentation. |
|||||||||
|
|
You can use this function:
|
||||
|
|
I think the only way to do that is to do a |
||||
|
You can just send the string through 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 ( |
|||
|
|
|
If data is not valid base64 then function base64_decode($string, true) will return FALSE. |
|||
|
|
|
Old topic, but I've found this function and It's working:
|
|||
|
|