Home > Backend Development > PHP Tutorial > php str_pad() fills the string into a string of specified length_PHP tutorial

php str_pad() fills the string into a string of specified length_PHP tutorial

WBOY
Release: 2016-07-21 15:41:10
Original
1311 people have browsed it

/**
* Fill the string into a string of specified length (multi-byte safe)
* @param string $str specifies the filled string
* @param int $len specifies the filled string The length, if the value is negative or less than the length of the string, it will not be filled
* @param string $pad_str The string to be filled
* @param int $pad_type specifies the direction of filling STR_PAD_RIGHT, STR_PAD_LEFT or STR_PAD_BOTH
* @return string
*/

// string str_pad(string $str, int $len, string $pad_str, string $pad_type);

echo str_pad($result2[0] ,6,"0",STR_PAD_LEFT);

Copy code The code is as follows:

$ input = "Alien";
echo str_pad($input, 10); // produces "Alien "
echo str_pad($input, 10, "-=", STR_PAD_LEFT); // produces "-=- =-Alien"
echo str_pad($input, 10, "_", STR_PAD_BOTH); // produces "__Alien___"
echo str_pad($input, 6 , "___"); // produces "Alien_"
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321218.htmlTechArticle/** * Fill the string into a string of specified length (multi-byte safe) * @param string $str specifies the padded string* @param int $len specifies the length of the padded string, if the value...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template