- A
- addcslashes
- addslashes
- B
- bin2hex
- C
- chr
- chunk_split
- convert_cyr_string
- convert_uudecode
- convert_uuencode
- count_chars
- E
- explode
- G
- get_html_translation_table
- H
- hebrev
- hebrevc
- html_entity_decode
- htmlentities
- htmlspecialchars
- htmlspecialchars_decode
- I
- implode
- L
- lcfirst
- levenshtein
- ltrim
- M
- metaphone
- money_format
- N
- nl2br
- nl_langinfo
- number_format
- O
- ord
- P
- parse_str
- Q
- quoted_printable_decode
- quoted_printable_encode
- quotemeta
- R
- rtrim
- S
- similar_text
- soundex
- sprintf
- str_getcsv
- str_ireplace
- str_pad
- str_repeat
- str_replace
- str_rot13
- str_shuffle
- str_split
- str_word_count
- strcasecmp
- strcmp
- strcoll
- strcspn
- strip_tags
- stripcslashes
- stripos
- stripslashes
- stristr
- strlen
- strnatcasecmp
- strnatcmp
- strncasecmp
- strncmp
- strpbrk
- strpos
- strrchr
- strrev
- strripos
- strrpos
- strspn
- strstr
- strtok
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- T
- trim
- U
- ucfirst
- ucwords
- V
- vsprintf
- W
- wordwrap
str_pad
Definition
string str_pad ( string $input , int $pad_length [, string $pad_string = " " [, int $pad_type = STR_PAD_RIGHT ]] )
Description
This functions returns the input string padded on the left, the right, or both sides to the specified padding length. If the optional argument pad_string is not supplied, the input is padded with spaces, otherwise it is padded with characters from pad_string up to the limit.