How to use the str_pad() function in PHP

A detailed guide on how to use the `str_pad()` function in PHP to pad strings with different characters to a specified length. The article introduces various common uses of this function in programming.

The str_pad() function in PHP is used to pad strings with characters to a desired length. You can pad strings on the right, left, or both sides. In this article, we will explore different ways to use the str_pad() function with practical examples.

PHP Code

<?php
// Pad string from the right
$string1 = str_pad("Hello", 10, ".");
echo $string1;  // Output: Hello.....

// Pad string from the left
$string2 = str_pad("123", 6, "0", STR_PAD_LEFT);
echo $string2;  // Output: 000123

// Pad string from both sides
$string3 = str_pad("PHP", 8, "*", STR_PAD_BOTH);
echo $string3;  // Output: **PHP***
?>

Detailed explanation:

  1. str_pad("Hello", 10, "."): Pads the string "Hello" from the right with a period (.) to a length of 10 characters.
  2. str_pad("123", 6, "0", STR_PAD_LEFT): Pads the string "123" from the left with zeros to make the string 6 characters long.
  3. str_pad("PHP", 8, "*", STR_PAD_BOTH): Pads the string "PHP" on both sides with asterisks (*) to a total length of 8 characters.

System requirements:

  • PHP 7.0 or above.

How to install the libraries:

  • No libraries need to be installed. The str_pad() function is built into PHP.

Tips:

  • Use str_pad() when formatting fixed-length strings, such as displaying numbers or codes with padding characters.
  • Ensure that the input string is shorter than or equal to the desired length to avoid padding failures.
Tags: PHP, String


Related

Add watermark to image using PHP

A guide on how to add a watermark to an image using PHP with the GD library. This PHP script allows adding text or image watermark on top of the original image.
How to send JSON POST request with PHP

A guide on how to use PHP to send a POST request with JSON data using cURL. The article includes a runnable PHP example along with detailed explanations.
Creating a Simple Chat Application Using Socket.IO in PHP

A step-by-step guide to creating a simple chat application using Socket.IO in PHP, helping you understand how to utilize WebSocket for real-time communication.
How to convert a Markdown string to HTML using PHP

A guide on how to convert a Markdown string to HTML in PHP using the `Parsedown` library, enabling you to display Markdown content effectively on your website.
Comprehensive guide to concatenating strings in PHP

A detailed guide on all the ways to concatenate strings in PHP, including the concatenation operator, string functions, and other methods.
Convert accented Unicode characters to non-accented in PHP

A guide on how to convert accented Unicode characters in the Vietnamese alphabet to non-accented letters using PHP. This PHP code efficiently handles Vietnamese text processing.
How to check for a substring in a string in PHP

A guide on how to use the `strpos` function in PHP to check if a substring exists within a larger string. This is a simple and efficient way to handle string operations in PHP.
How to extract numbers from a string in PHP

This article demonstrates how to extract numbers from a string in PHP using various methods such as regex (regular expressions), built-in functions like `preg_match_all`, `filter_var`, and manual approaches.
Update data in MySQL using PHP

A guide on how to update data in MySQL using PHP. This code uses the UPDATE SQL statement to change information in a MySQL database efficiently.
Guide to reading Excel files in PHP

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using PHP, utilizing the PHPExcel library, including installation and implementation steps.

main.add_cart_success