fork download
  1. <?php
  2.  
  3. function number_string ($n = 5, $order = 'desc') {
  4. $boom = '';
  5.  
  6. for($i = 1; $i <= $n; $i++) {
  7. $boom .= $i;
  8. }
  9.  
  10. return $boom;
  11. }
  12. var_dump(number_string());
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
string(5) "12345"