fork(2) download
  1. <?php
  2. error_reporting(E_ALL|E_STRICT);
  3.  
  4. $caminho = 'um/dois/tres';
  5.  
  6. echo end( explode( '/', $caminho ));
  7.  
  8. echo 'Hello World!';
Success #stdin #stdout #stderr 0.01s 52488KB
stdin
Standard input is empty
stdout
tresHello World!
stderr
PHP Strict Standards:  Only variables should be passed by reference in /home/rTinRH/prog.php on line 6