You are on page 1of 11

w3schools.

com LOG IN

  HTML CSS JAVASCRIPT MORE    

PHP str_pad() Function


❮ PHP String Reference

Example
Pad to the right side of the string, to a new length of 20 characters:

<?php
$str = "Hello World";
echo str_pad($str,20,".");
?>

Try it Yourself »
Definition and Usage
The str_pad() function pads a string to a new length.

Syntax
str_pad(string,length,pad_string,pad_type)

Parameter Values
Parameter Description

string Required. Specifies the string to pad

length Required. Specifies the new string length. If this value is less than the original length of the
string, nothing will be done

pad_string Optional. Specifies the string to use for padding. Default is whitespace

pad_type Optional. Specifies what side to pad the string.

Possible values:

STR_PAD_BOTH - Pad to both sides of the string. If not an even number, the right side
gets the extra padding
STR_PAD_LEFT - Pad to the left side of the string
STR_PAD_RIGHT - Pad to the right side of the string. This is default
Technical Details
Return Value: Returns the padded string

PHP Version: 4.0.1+

More Examples

Example
Pad to the left side of the string:

<?php
$str = "Hello World";
echo str_pad($str,20,".",STR_PAD_LEFT);
?>

Try it Yourself »

Example
Pad to both sides of the string:

<?php
$str = "Hello World";
echo str_pad($str,20,".:",STR_PAD_BOTH);
?>

Try it Yourself »

❮ PHP String Reference


COLOR PICKER
LIKE US



Get certified
by completing
a course today!

school
w3 s

1
CE

02
TI 2
R

FI .
ED

Get started

CODE GAME
Play Game

Certificates

HTML

CSS

JavaScript

Front End

Python

SQL

And more
-40% -36%
Chaldal.com

REPORT ERROR FORUM ABOUT SHOP

Top Tutorials Top References


HTML Tutorial HTML Reference
CSS Tutorial CSS Reference
JavaScript Tutorial JavaScript Reference
How To Tutorial SQL Reference
SQL Tutorial Python Reference
Python Tutorial W3.CSS Reference
W3.CSS Tutorial Bootstrap Reference
Bootstrap Tutorial PHP Reference
PHP Tutorial HTML Colors
Java Tutorial Java Reference
C++ Tutorial Angular Reference
jQuery Tutorial jQuery Reference

Top Examples Web Courses


HTML Examples HTML Course
CSS Examples CSS Course
JavaScript Examples JavaScript Course
How To Examples Front End Course
SQL Examples SQL Course
Python Examples Python Course
W3.CSS Examples PHP Course
Bootstrap Examples jQuery Course
PHP Examples Java Course
Java Examples C++ Course
XML Examples C# Course
jQuery Examples XML Course

Get Certified »

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples
are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and
accepted our terms of use, cookie and privacy policy.

Copyright 1999-2021 by Refsnes Data. All Rights Reserved.


W3Schools is Powered by W3.CSS.

You might also like