Skip to content

Instantly share code, notes, and snippets.

@gyopiazza
Created April 8, 2015 17:43
Show Gist options
  • Save gyopiazza/82fd1a17a323914563df to your computer and use it in GitHub Desktop.
Save gyopiazza/82fd1a17a323914563df to your computer and use it in GitHub Desktop.
<?php
/*
*------------------------------------------------------------------------------------------------
* Determine if string is serialized
*------------------------------------------------------------------------------------------------
*
*/
function string_is_serialized($str)
{
return (is_string($str)) ? preg_match( "/^(O:|a:)/", $str) : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment