153
PHP string str_pad() Function
The str_pad() is in-built PHP function which is use to pad a string to a certain length. It returns input string padded on the left, right both sides to the specified function.
Syntax:
Parameter | Description | Required/Optional |
---|---|---|
String | Specify the string. | Required |
Length | Specify the new string length. | Required |
Pad_string | Specify the string for padding. | Optional |
Pad_type | Specify what side to pad the string. Following Value:
| Optional |
Note 1: The pad-string may be reduced if the padding character can’t be divided by the pad_string’s length.
Note 2: If the pad_type is not specified then it assumed as STR_PAD_RIGHT.
Example 1
Output:
Your string isHello TutorAspire By using str_pad() function;Hello TutorAspire .....
Example 2
Output:
Your string is:Tutoraspire By using str_pad() function:Tutoraspire
Example 3
Output:
Your string isHello TutorAspire By using str_pad() function:.....Hello TutorAspire
Example 4
Output:
Your string is: TutorAspire By using str_pad() function: TutorAspire ............
Example 5
Output:
Your string isHello TutorAspire By using str_pad() function:..Hello TutorAspire ..
Next TopicPHP String