fork download
  1. <?php
  2.  
  3. $string='Hello world this day and tom&or&row';
  4. if (($pos = strpos ($string, '&', strlen($string) - 5)) !== false)
  5. {
  6. $string = substr($string,0, $pos);
  7. }
  8. echo $string;
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Hello world this day and tom&or