Skip to content

Instantly share code, notes, and snippets.

@clairvy
Created September 7, 2010 04:31
Show Gist options
  • Save clairvy/567873 to your computer and use it in GitHub Desktop.
Save clairvy/567873 to your computer and use it in GitHub Desktop.
# php oneliner
function phpv () {
local B
local e
while getopts 'B:e:' opt; do
case $opt in
B) B=$OPTARG;;
e) e=$OPTARG;;
esac
done
shift $((OPTIND - 1))
php -r "$B; var_dump($e);"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment