Guest User

Untitled

a guest
Apr 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. /**
  3. * ex.
  4. * include 'ruby_like.php';
  5. */
  6. function puts($args)
  7. {
  8. print $args;
  9. }
  10.  
  11. function p()
  12. {
  13. foreach(func_get_args() as $argments) {
  14. var_export($argments);
  15. }
  16. }
  17.  
  18. function pp()
  19. {
  20. foreach(func_get_args() as $argments) {
  21. var_dump($argments);
  22. }
  23. }
  24.  
  25. function h($string, $quote_style = null, $charset = null)
  26. {
  27. return htmlspecialchars($string, $quote_style, $charset);
  28. }
Add Comment
Please, Sign In to add comment