alexsoft/leftpad

There just should be a leftpad function for PHP

1.1.0 2023-01-05 17:02 UTC

This package is auto-updated.

Last update: 2024-04-17 22:49:51 UTC


README

Latest Version on Packagist

A whole package is just one file with a single function \Alexsoft\Leftpad\leftpad(string $string, int $length, string $filler): string

$string - your initial string
$length - final length of returned string
$filler - symbol with which initial string should be left padded

1. Install

composer require alexsoft/leftpad

2. Use it

\Alexsoft\Leftpad\leftpad('foo', 5) // => "  foo"

\Alexsoft\Leftpad\leftpad('1', 3, '0') // => "001"