PHP自帶函式給數字或字串自動補齊位數

2022-10-06 11:54:14 字數 1584 閱讀 6536

先來看個例子:需求為生成4位數,不足前面補0

php

//生成4位數,不足前面補0

$var=sprintf("%04d", 2);

echo $var;//結果為0002

echo date('y_m_d', time()).'_'.sprintf('d', rand(0,99));

?>

sprintf()函式

有沒有感覺很像c語言

1. 語法

sprintf(format,arg1,arg2,arg++)

引數 描述

format 必需。轉換格式。

arg1 必需。規定插到 format 字串中第乙個 % 符號處的引數。

arg2 可選。規定插到 format 字串中第二個 % 符號處的引數。

arg++ 可選。規定插到 format 字串中第

三、四等等 % 符號處的引數。

2. 說明

引數 format 是轉換的格式,以百分比符號 ("%") 開始到轉換字元結束。下面的可能的 format 值:

%% - 返回百分比符號

%b - 二進位制數

%c - 依照 ascii 值的字元

%d - 帶符號十進位制數

%e - 可續計數法(比如 1.5e+3)

%u - 無符號十進位制數

%f - 浮點數(local settings aware)

%f - 浮點數(not local settings aware)

%o - 八進位制數hlpjctgjb

%s - 字串

%x - 十六進製制數(小寫字母)

%x - 十六進製制數(大寫字母)

arg1, arg2, ++ 等引數將插入到主字串中的百分號 (%) 符號處。該函式是逐步執行的。在第乙個 % 符號中,插入 arg1,在第二個 % 符號處,插入 arg2,依此類推。

<?php $number = 123;

$txt = sprintf("%f",$number);

echo $tx

?>hlpjctgjb

3. 格式數字 number_format()

<?php $number = 1www.cppcns.com234.56;

// english notation (default)

$english_format_number = number_format($number);

// 1,235

// fre notation

$nombre_format_francais = number_format($number, 2, ',', ' ');

// 1 234,56

$number = 1234.5678;

// english notation without thousands seperator

$english_format_number = number_format($number, 2, '.', '');

// 1234.57

?>

本文標題: php自帶函式給數字或字串自動補齊位數

本文位址:

php常用函式 字串

學習php的過程中,整理的一些常用的函式,這是字串函式。header content type text html charset utf 8 刪除兩邊 單邊 空格或其它預定義字元 str hello world echo trim str,hello world echo ltrim str,he...

js 自帶字串函式

js字串函式 js自帶函式 concat 將兩個或多個字元的文字組合起來,返回乙個新的字串。var a hello var b world var c a.concat b alert c c hello,world indexof 返回字串中乙個子串第一處出現的索引 從左到右搜尋 如果沒有匹配項,...

c 字串轉數字或數字轉字串

在c 中字串轉換為數字,或數字轉換為字串,用到如下函式 itoa atoi atof itoa itow itoa s 1.整形轉換為字串 2.字串轉為整形 在字符集設定不同下會有不同的型別,說白了,這幾個函式的功能都相同,但是根據你的字符集不同,選用的函式也不同。itot 在asicii下被巨集定...