str_pad()
函数在 PHP 中用于将字符串填充到指定长度
str_pad()
函数的语法如下:
str_pad(string $input, int $pad_length, string $pad_string = " ", int $pad_type = STR_PAD_RIGHT): string
参数说明:
$input
:要填充的原始字符串。$pad_length
:填充后的字符串最大长度。如果该值小于原始字符串的长度,则不进行任何填充。$pad_string
:可选参数,用于指定填充时使用的字符串。默认为空格。$pad_type
:可选参数,指定填充类型。可以是以下三个值之一:
STR_PAD_LEFT
:在字符串左侧填充(默认)。STR_PAD_RIGHT
:在字符串右侧填充。STR_PAD_BOTH
:在字符串两侧填充。示例:
$input = "Hello";
$padded_string = str_pad($input, 10, "-", STR_PAD_BOTH);
echo $padded_string; // 输出:"--Hello---"
在这个示例中,我们将字符串 “Hello” 填充至长度为 10。我们使用短横线 “-” 作为填充字符,并选择在字符串两侧进行填充。所以结果是 “–Hello—”。