Skip to content

Instantly share code, notes, and snippets.

@philsturgeon
Last active November 6, 2015 18:11
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 philsturgeon/4e523d58325032681663 to your computer and use it in GitHub Desktop.
Save philsturgeon/4e523d58325032681663 to your computer and use it in GitHub Desktop.
PHP being PHP
$ irb
irb(main):001:0> "text" * 4
=> "texttexttexttext"
$ php -a
Interactive shell
php > var_dump("text" * 4);
int(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment