fork(1) download
  1. <?php
  2.  
  3. $one = "Naharis";
  4. $two = "Mormont";
  5. $three = "Sand";
  6. $one = (substr($one, -5, 1));
  7. $two = (substr($two, -6, 1));
  8. $three = (substr($three, -4, 1));
  9. $foo = (substr($two, -7, 1));
  10. print_r($foo);
Success #stdin #stdout 0.03s 25360KB
stdin
Standard input is empty
stdout
o