Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. // funcA.php
  3.  
  4. function funcA ($name)
  5. {
  6.     return strtoupper($name);
  7. }
  8.  
  9. <?php
  10. // funcB.php
  11.  
  12. function funcB ($name)
  13. {
  14.     return substr($name, -3);
  15. }
  16.  
  17. <?php
  18. // funcC.php
  19.  
  20. function funcC ($name)
  21. {
  22.     return pipe(
  23.         funcA,
  24.         funcB
  25.     )($name);
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement