fork download
  1. <?php
  2.  
  3. function fn($string)
  4. {
  5. return (function() use ($string)
  6. {
  7. return call_user_func_array($string, func_get_args());
  8. });
  9. }
  10.  
  11. $strtolower = fn('strtolower');
  12. echo $strtolower("AYGYhuhyu");
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
aygyhuhyu