pad.php
Table of Contents
Functions
- pad() : string
- Pads a UTF-8 string to a certain length using a specified padding string and type.
Functions
pad()
Pads a UTF-8 string to a certain length using a specified padding string and type.
pad(string|null $source, int $size, string $pad, int $type) : string
If the source string is null, it is treated as an empty string. The padding uses grapheme clusters to correctly handle multibyte characters.
Parameters
- $source : string|null
-
The input string or null.
- $size : int
-
Desired length after padding (in grapheme clusters).
- $pad : string
-
The string to use for padding (cannot be empty).
- $type : int
-
One of STR_PAD_LEFT, STR_PAD_RIGHT, STR_PAD_BOTH.
Tags
Return values
string —The padded string.