fork download
  1. <?php
  2. $input = 'hello';
  3. $output = str_pad($input, 20, '_');
  4. echo $output;
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
hello_______________