Skip to content

Instantly share code, notes, and snippets.

@chaosmail
Created March 28, 2013 16:34
Show Gist options
  • Save chaosmail/5264697 to your computer and use it in GitHub Desktop.
Save chaosmail/5264697 to your computer and use it in GitHub Desktop.
Check if String is serialized
function isSerialized($string) {
return (@unserialize($string) !== false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment