Skip to content

Instantly share code, notes, and snippets.

@freekrai
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freekrai/cde3a1a190a3c2dea22f to your computer and use it in GitHub Desktop.
Save freekrai/cde3a1a190a3c2dea22f to your computer and use it in GitHub Desktop.
<?php
/*
Checks if a string is base65 encoded or not already...
*/
function is_base64($str) {
if (!preg_match('~[^0-9a-zA-Z+/=]~', $str)) {
$check = str_split(base64_decode($str));
$x = 0;
foreach ($check as $char) if (ord($char) > 126) $x++;
if ($x/count($check)*100 < 30) return true;
}
return false;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment