php の
sprintf は、フォーマットされた文字列を変数に書き込み、フォーマットされた文字列を返すために使用される関数です。 PHP では、バージョン 4 以降がこの sprintf 関数をサポートしています。 sprintf() 関数は printf() 関数に似ていますが、両方の主な唯一の違いは、sprintf() 関数が printf() 関数のようにフォーマットされた出力をブラウザ上に表示するのではなく、出力を文字列に保存することです。 sprintf() 関数は echo と連動できます。つまり、sprintf() によって返されたフォーマットされた文字列は echo を使用してブラウザ上に表示されます。このトピックをさらに深く掘り下げて、その構文、アクセス可能な形式を確認し、いくつかのプログラムを解決してみましょう。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
これは、PHP の sprintf() 関数の構文です。
sprintf(format, arg1, arg2, arg3, …….)
ここで、arg1、arg2、arg3などはsprintf()のパラメータです。 arg1 は最初に挿入する必須の引数です。 arg2、arg3、………は、挿入されるオプションの引数です。
形式: これは必須パラメータであり、変数の形式を指定する文字列を指定します。
使用可能な形式は以下のとおりです:
パラメータ
Parameter |
Description |
%b | Argument present as a binary number |
%% | Returns % sign |
%d | Parameter treated as a positive integer, represented as a decimal number |
%c | Parameter treated as an integer, represented as a character with ASCII |
%e | Precision specifier that specifies the number of digits after the decimal point. Scientific notation with lowercase |
%u | Parameter treated as an integer, represented as unsigned integer |
%f | Floating-point number(locale) |
%g | General format |
%o | Represented as Octal number |
%x | Represented as Hexadecimal number with lowercase letters |
%s | Argument presented and treated as a string |
%E | Similar to %e specifier but with Uppercase. |
%F | Floating-point number(Non-locale) |
%G | Similar to %g specifier but uses %E and %F |
%X | Represented with Hexadecimal number but with uppercase |
説明
%b引数は 2 進数として指定されます%%% 記号を返します%dパラメータは正の整数として扱われ、10 進数で表されます%cパラメータは整数として扱われ、ASCII の文字として表されます%e小数点以下の桁数を指定する精度指定子。小文字を使用した科学表記%uパラメータは整数として扱われ、符号なし整数として表されます%f浮動小数点数(ロケール)%g一般的な形式%o8 進数で表されます%x小文字を含む 16 進数で表されます%s引数が提示され、文字列として扱われます%E%e 指定子と似ていますが、大文字が使用されます。%F浮動小数点数(非ロケール)%G%g 指定子と似ていますが、%E と %F を使用します%X16 進数で表されますが、大文字が使用されますテーブル>There are some additional format values, which are placed between % and letter.
Let us see How sprintf() function in PHP works with few examples,
Code:
Output:
Here, we have taken two float values and using sprintf() function, scanned the variables, and using echo, have printed the floating values on the console.
Code:
With no decimals: %1\$u
With single decimal: %1\$.1f",$num1); echo $text; ?>
Output:
So here for floating values, we have specified as to no decimals, or single decimal, or 3 decimal values.
Code:
"; echo sprintf("[%08s]",$string1)."
"; echo sprintf("[%-8s]",$string1)."
"; echo sprintf("[%8s]",$string1)."
"; echo sprintf("[%8.8s]",$string1)."
"; echo sprintf("[%'*8s]",$string1)."
"; ?>
Output:
So based on the output, [%s] will return the string as it is
[%08s] will return string with zero padding [%-8s] will return string with left justification [%8s] will return string with the right justification [%8.8s] will return string with left justification, cuts of characters after a specific value [%’*8s] will return string with additional *Code:
Output:
So here, format string supports argument swapping/ numbering.
Imagine if the placeholders in format string do not match the order of the arguments as shown above. And hence, we have indicated the arg1 which arguments refer to which placeholders.
Code:
"; echo sprintf("%%d = %d",$arg1)."
"; echo sprintf("%%d = %d",$arg2)."
"; echo sprintf("%%c = %c",$str)."
"; echo sprintf("%%e = %e",$arg1)."
"; echo sprintf("%%u = %u",$arg1)."
"; echo sprintf("%%u = %u",$arg2)."
"; echo sprintf("%%f = %f",$arg1)."
"; echo sprintf("%%f = %f",$arg2)."
"; echo sprintf("%%g = %g",$arg1)."
"; echo sprintf("%%g = %g",$arg2)."
"; echo sprintf("%%o = %o",$arg1)."
"; echo sprintf("%%o = %o",$arg2)."
"; echo sprintf("%%x = %x",$arg1)."
"; echo sprintf("%%x = %x",$arg2)."
"; echo sprintf("%%s = %s",$arg1)."
"; echo sprintf("%%s = %s",$arg2)."
"; echo sprintf("%%E = %E",$arg1)."
"; echo sprintf("%%F = %F",$arg1)."
"; echo sprintf("%%G = %G",$arg1)."
"; echo sprintf("%%X = %X",$arg1)."
"; echo sprintf("%%+d = %+d",$arg1)."
"; echo sprintf("%%+d = %+d",$arg2)."
"; ?>
Output:
So here we have shown all the format specifiers.
With this, we shall conclude the topic ‘sprintf in php’. We have seen the syntax of sprintf() function in PHP. We have seen what each format specifier means and have Illustrated few examples on how to use sprintf in PHP. The above examples will give a clear understanding of all the format specifiers.
以上がPHPのsprintfの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。