php对字符串格式化,PHP字符串格式化
Q:
格式是 CI00000000  当ID是 1时显⽰为 CI00000001
ID是 100 时显⽰为 CI00000100
谁有好的点⼦,
A:
$num=19;
$s='CI'.sprintf('%08d',$num);
解释:
%d –带有正负号的⼗进制数
Definition and Usage
定义和⽤法
The sprintf() function writes a formatted string to a variable.
sprintf()函数的作⽤是:输出格式化字符串到变量。
The arg1, arg2, ++ parameters will be inserted at percent (%) signs
in the main string. This function works “step-by-step”. At the first %
sign, arg1 is inserted, at the second % sign, arg2 is inserted, etc.
arg1, arg2, ++参数将被插⼊到主体字符串中的百分号(%)之后。这个函数是“⼀步⼀步[step-by-step]”执⾏的。在第⼀个“%”之后插⼊arg1,在第⼆个“%”之后插⼊arg2,依次类推。
Syntax语法
sprintf(format,arg1,arg2,arg++)
Parameter参数
Description描述
format
Required. Specifies the string and how to format the variables in it.
必要参数。指定字符串,以及如何定义其中变量的格式。
Possible format values:
可能值如下:
%% - Returns a percent sign
%% -返回百分号
%b - Binary number
%b –返回⼆进制数
%c - The character according to the ASCII value
%c –返回与ASCII值相对应的字符
%d - Signed decimal number
%d –带有正负号的⼗进制数
%e - Scientific notation (e.g. 1.2e+2)
%e –科学计数符号(如:1.2e+2)
%u - Unsigned decimal number
%u –不带正负号的⼗进制数
%f - Floating-point number (local settings aware)
%f – 浮点数据(本地设置)
%F - Floating-point number (not local settings aware)
%F –浮点数据(⾮本地设置)
%o - Octal number
%o –⼗进制数
%s - String
%s –字符串
%x - Hexadecimal number (lowercase letters)
%x –⼗六进制数(⼩写字母)
%X - Hexadecimal number (uppercase letters)
%X –⼗六进制数(⼤写字母)
Additional format values. These are placed between the % and the letter (example %.2f):
其它格式的值。它是位于%和字母之间的(如:%.2f)
+ (Forces both + and - in front of numbers. By default, only negative numbers are marked)
+(在数字前加上+和-;默认情况下,只有负数是被标记出来的)
(Specifies what to use as padding. Default is space. Must be used
together with the width specifier. Example: %’x20s (this uses “x” as
padding)
’(指定使⽤什么作为补⽩,默认值是空格。它必须与宽度指定器⼀起使⽤。如:%’x20s(使⽤“x”作为padding)) - (Left-justifies the variable value)
- (左调整变量值)
[0-9] (Specifies the minimum width held of to the variable value)
[0-9](指定变量值的最⼩宽度)
.[0-9] (Specifies the number of decimal digits or maximum string length)
.[0-9](指定⼗进制数值或最⼤字符串长度)
Note: If multiple additional format values are used, they must be in the same order as above.
注意:如果使⽤附加格式值,那么它必须与上述顺序相同
arg1
Required. The argument to be inserted at the first %-sign in the format string
必要参数。这个⾃变量(arg1)必须安插在第⼀个%-符号前
arg2
Optional. The argument to be inserted at the second %-sign in the format string
可选参数。这个⾃变量(arg2)必须安插在第⼆个%-符号前
phpjson格式化输出arg++
Optional. The argument to be inserted at the third, fourth, etc. %-sign in the format string
可选参数。与上述⾃变量相同,它们可以安插在第三个、第四个……(依次类推)%-符号前。
Tips and Notes提⽰和注意点
Note: If there are more % signs than arguments, you
must use placeholders. A placeholder is inserted after the % sign, and
consists of the argument- number and “/$”. See example three.
注意:注意:如果这⾥的%⽐⾃变量更多,你必须使⽤占位符[placeholders]。占位符是安插在%之后的,它是由⾃变量-数字和“/$”组成的。具体可以见案例3。
Tip: Related functions: fprintf(), printf(), vfprintf(), vprintf(), and vsprintf().
提⽰:相关函数:printf(), sprintf(), vfprintf(), vprintf(), 和 vsprintf()
Example 1案例1
$txt = sprintf("%s world. Day number %u",$str,$number);e
cho $txt;?>
The output of the code above will be:
上述代码将输出下⾯的结果:
Hello world. Day number 123
Example 2
案例2
The output of the code above will be:
上述代码将输出下⾯的结果:
123.000000
Example 3
案例3
Use of placeholders:
使⽤占位符:
$txt = sprintf("With 2 decimals: %1/$.2f
With no decimals: %1/$u",$number);
echo $txt;?>
The output of the code above will be:
上述代码将输出下⾯的结果:
With 2 decimals: 123.00 With no decimals: 123
sprintf 最常见的应⽤之⼀莫过于把整数打印到字符串中,所以,spritnf
在⼤多数场合可以替代itoa。
这样,⼀个整数的16 进制字符串就很容易得到,但我们在打印16 进制内容时,通常想要⼀种左边补0 的等宽格式,那该怎么做呢?很简单,在表⽰宽度的数字前⾯加个0 就可以了。
sprintf(s, "%08X", 4567); //产⽣:"000011D7"
上⾯以”%d”进⾏的10 进制打印同样也可以使⽤这种左边补0 的⽅式。
这⾥要注意⼀个符号扩展的问题:⽐如,假如我们想打印短整数(short)-1
的内存16 进制表⽰形式,在Win32 平台上,⼀个short 型占2 个字节,所以我们⾃然希望⽤4 个16 进制数字来打印它:
short si = -1;
sprintf(s, "%04X", si);
产⽣“FFFFFFFF”,怎么回事?因为spritnf 是个变参函数,除了前⾯两个参数之外,后⾯的参数都不是类型安全的,函数更没有办法仅仅通过⼀个“%X”就能得知当初函数调⽤前参数压栈时被压进来的到底是个4 字节的整数还是个2 字节的短整数,所以采取了统⼀4 字节的处理⽅式,导致参数压栈时做了符号扩展,扩展成了32 位的整数-1,打印时4 个位置不够了,就把32 位整数-1 的8 位16 进制都打印出来了。如果你想看si 的本来⾯⽬,那么就应该让编译器做0 扩展⽽不是符号扩展(扩展时⼆进制左边补0 ⽽不
是补符号位):
sprintf(s, "%04X", (unsigned short)si);
就可以了。或者:
unsigned short si = -1;
sprintf(s, "%04X", si);
2:
浮点数的打印和格式控制是sprintf 的⼜⼀⼤常⽤功能,浮点数使⽤格式符”%f”控制,默认保留⼩数点后6 位数字,⽐如:
sprintf(s, "%f", 3.1415926); //产⽣"3.141593"
但有时我们希望⾃⼰控制打印的宽度和⼩数位数,这时就应该使⽤:”
%m.nf”格式,其中m 表⽰打印的宽度,n 表⽰⼩数点后的位数。⽐如:
sprintf(s, "%10.3f", 3.1415626); //产⽣:" 3.142"
sprintf(s, "%-10.3f", 3.1415626); //产⽣:"3.142 "
sprintf(s, "%.3f", 3.1415626); //不指定总宽度,产⽣:"3.142"
注意⼀个问题,你猜
int i = 100;
sprintf(s, "%.2f", i);
会打出什么东东来?“100.00”?对吗?⾃⼰试试就知道了,同时也试试下⾯这个:sprintf(s, "%.2f", (double)i);
第⼀个打出来的肯定不是正确结果,原因跟前⾯提到的⼀样,参数压栈时调
⽤者并不知道跟i相对应的格式控制符是个”%f”。⽽函数执⾏时函数本⾝
则并不知道当年被压⼊栈⾥的是个整数,于是可怜的保存整数i 的那4 个字
节就被不由分说地强⾏作为浮点数格式来解释了,整个乱套了。
3:
连接字符串
sprintf 的格式控制串中既然可以插⼊各种东西,并最终把它们“连成⼀
串”,⾃然也就能够连接字符串,从⽽在许多场合可以替代strcat,但
sprintf 能够⼀次连接多个字符串(⾃然也可以同时在它们中间插⼊别的内
容,总之⾮常灵活)。⽐如:
char* who = "I";
char* whom = "CSDN";
sprintf(s, "%s love %s.", who, whom); //产⽣:"I love CSDN. "
strcat 只能连接字符串(⼀段以’\0’结尾的字符数组或叫做字符缓冲,
null-terminated-string),
但有时我们有两段字符缓冲区,他们并不是以’\0’结尾。⽐如许多从第三
⽅库函数中返回的字符数组,从硬件或者⽹络传输中读进来的字符流,它们
未必每⼀段字符序列后⾯都有个相应的’\0’来结尾。如果直接连接,不管
是sprintf 还是strcat 肯定会导致⾮法内存操作,strncat 也⾄少要求第
⼀个参数是个null-terminated-string,那该怎么办呢?我们⾃然会想起前
⾯介绍打印整数和浮点数时可以指定宽度,字符串也⼀样的。⽐如:
char a1[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G'};
char a2[] = {'H', 'I', 'J', 'K', 'L', 'M', 'N'};
如果:
sprintf(s, "%s%s", a1, a2); //Don't do that!
⼗有⼋九要出问题了。是否可以改成:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。