Source Code:
(back to article)
<?php $input = "Hello"; $pad_length = 10; $pad_string = "0"; $pad_type = STR_PAD_LEFT; $output = str_pad($input, $pad_length, $pad_string, $pad_type); echo $output; // Output: 00000Hello ?>
Result:
Report an issue