Base64 Encode Php Code Example


Example 1: php detect base64 encoding

function is_base64_encoded($data) {     if (preg_match('%^[a-zA-Z0-9/+]*={0,2}$%', $data)) {        return TRUE;     } else {        return FALSE;     } };  is_base64_encoded("iash21iawhdj98UH3"); // true is_base64_encoded("#iu3498r"); // false is_base64_encoded("asiudfh9w=8uihf"); // false is_base64_encoded("a398UIhnj43f/1!+sadfh3w84hduihhjw=="); // false

Example 2: how do decode base64 php

base64_decode('base64-string-goes-here');

Example 3: echo encode base64

$ echo  'linuxhint.com' | base64

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?