fork(1) download
  1. <?php
  2.  
  3. $v_ficha_loja = 1;
  4. $v_ficha_ambiente = 2;
  5.  
  6. for( $v_sequencia = 1; $v_sequencia < 20; ++$v_sequencia ) {
  7. $barra = sprintf( "%'02d%'02d%'07d", $v_ficha_loja, $v_ficha_ambiente, $v_sequencia );
  8. echo $barra . PHP_EOL;
  9. }
  10.  
  11.  
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
01020000001
01020000002
01020000003
01020000004
01020000005
01020000006
01020000007
01020000008
01020000009
01020000010
01020000011
01020000012
01020000013
01020000014
01020000015
01020000016
01020000017
01020000018
01020000019