/**
* 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_"
?>
http://www.bkjia.com/PHPjc/321218.htmlwww.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...