Skip to content

Instantly share code, notes, and snippets.

@ElijahLynn
Last active August 29, 2015 13:58
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 ElijahLynn/10171219 to your computer and use it in GitHub Desktop.
Save ElijahLynn/10171219 to your computer and use it in GitHub Desktop.
#!/bin/bash
# https://gist.github.com/gregferrell/747642
if [[ $1 ]];
then
php -r " echo var_dump(unserialize('"$1"')); echo \"\\n\";"
else
STRING=`pbpaste`
php -r " echo var_dump(unserialize('"$STRING"')); echo \"\\n\";"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment