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