PHP 在单个数字之前预置前导零,即时

2022-08-30 06:12:31

PHP - 有没有一种快速的动态方法来测试单个字符串,然后在前导零之前?

例:

$year = 11;
$month = 4;

$stamp = $year.add_single_zero_if_needed($month);  // Imaginary function

echo $stamp; // 1104

答案 1

您可以使用冲刺 :http://php.net/manual/en/function.sprintf.php

<?php
$num = 4;
$num_padded = sprintf("%02d", $num);
echo $num_padded; // returns 04
?>

仅当零少于所需的字符数时,它才会添加零。

编辑:正如@FelipeAls所指出的:

使用数字时,应使用(而不是 ),尤其是在可能存在负数的情况下。如果仅使用正数,则任一选项都可以正常工作。%d%s

例如:

sprintf("%04s", 10);返回 0010
返回 0-10sprintf("%04s", -10);

其中:

sprintf("%04d", 10);返回 0010
返回 -010sprintf("%04d", -10);


答案 2

您可以使用str_pad来添加 0

str_pad($month, 2, '0', STR_PAD_LEFT); 

string str_pad ( string $input , int $pad_length [, string $pad_string = " " [, int $pad_type = STR_PAD_RIGHT ]] )


推荐