+
95
-

php字符串长度不够自动填充的函数是什么?

php

请问php字符串长度不够自动填充的函数是什么?

网友回复

+
15
-

用str_pad

<?php
$input = "BFW";
echo str_pad($input, 10); // 输出 "BFW "
echo str_pad($input, 10, "-=", STR_PAD_LE...

点击查看剩余70%

我知道答案,我要回答