Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 157 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 157 Bytes

left-pad

Left pad a string.

Usage

var_dump(left_pad('foo', 5));
# string(5) "  foo"

(By @SoatokDhole)