简单教程
提交运行
代码编辑器:
<?php $num1 = 123456789; $num2 = -123456789; $char = 50; // The ASCII Character 50 is 2 // Note: The format value "%%" returns a percent sign echo sprintf("%%b = %b<br>",$num1); // Binary number echo sprintf("%%c = %c<br>",$char); // The ASCII Character echo sprintf("%%d = %d<br>",$num1) ; // Signed decimal number echo sprintf("%%d = %d<br>",$num2); // Signed decimal number echo sprintf("%%e = %e<br>",$num1); // Scientific notation (lowercase) echo sprintf("%%E = %E<br>",$num1); // Scientific notation (uppercase) echo sprintf("%%u = %u<br>",$num1); // Unsigned decimal number (positive) echo sprintf("%%u = %u<br>",$num2); // Unsigned decimal number (negative) echo sprintf("%%f = %f<br>",$num1); // Floating-point number (local settings aware) echo sprintf("%%F = %F<br>",$num1); // Floating-point number (not local sett aware) echo sprintf("%%g = %g<br>",$num1) ; // Shorter of %e and %f echo sprintf("%%G = %G<br>",$num1) ; // Shorter of %E and %f echo sprintf("%%o = %o<br>",$num1) ; // Octal number echo sprintf("%%s = %s<br>",$num1) ; // String echo sprintf("%%x = %x<br>",$num1); // Hexadecimal number (lowercase) echo sprintf("%%X = %X<br>",$num1); // Hex a decimal number (uppercase) echo sprintf("%%+d = %+d<br>",$num1) ; // Sign specifier (positive) echo sprintf("%%+d = %+d<br>",$num2) ;
运行结果: