在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
:在字符串的两侧进行填充。示例:
<?php
$input = "Hello";
$pad_length = 10;
$pad_string = "*";
$pad_type = STR_PAD_BOTH;
$padded_string = str_pad($input, $pad_length, $pad_string, $pad_type);
echo $padded_string; // 输出:**Hello***
?>
在这个示例中,我们将字符串"Hello"填充到10个字符长度,使用*
作为填充字符,并在两侧进行填充。结果是**Hello***
。