fork(1) download
  1. <?php
  2. $str = "950122";
  3. for( $i = 1; $i <= strlen( $str ); $i++ ) {
  4. echo substr( $str, $i, $i ) . "\n";
  5. }
  6. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
5
01
122
22
2