Advertisement
DavidRockin

I love PHP

Jul 21st, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?php
  2.  
  3. $hello = "world";
  4. $$hello = "helloworld";
  5. $$$hello = "hellouniverse";
  6. $$$$hello = "ilovephp";
  7. $$$$$hello = "yoloswag";
  8. $$$$$$hello = "davidHasSwag";
  9. $$$$$$$hello = "heyIJustMetYou";
  10. $$$$$$$$hello = "andThisIsCrazy";
  11. $$$$$$$$$hello = "soHeresMyNumber";
  12. $$$$$$$$$$hello = "nowCallMeMaybe";
  13. $$$$$$$$$$$hello = "(666) 666-9999";
  14.  
  15. var_dump(
  16.     $hello,
  17.     $world,
  18.     $helloworld,
  19.     $hellouniverse,
  20.     $ilovephp,
  21.     $yoloswag,
  22.     $davidHasSwag,
  23.     $heyIJustMetYou,
  24.     $andThisIsCrazy,
  25.     $soHeresMyNumber
  26. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement