PHPのsprintf

PHPz
リリース: 2024-08-29 12:34:54
オリジナル
675 人が閲覧しました

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 一般的な形式 %o 8 進数で表されます %x 小文字を含む 16 進数で表されます %s 引数が提示され、文字列として扱われます %E %e 指定子と似ていますが、大文字が使用されます。 %F 浮動小数点数(非ロケール) %G %g 指定子と似ていますが、%E と %F を使用します %X 16 進数で表されますが、大文字が使用されます テーブル>

There are some additional format values, which are placed between % and letter.

  • +, both + and – are forced in front of numbers. Negative numbers are marked by default.
  •  ‘ Specifies what is to be used as padding.
  •  – Left justifies the variable
  • [0-9] Specifies minimum width held to the variable.
  • .[0-9] Specifies the number of decimal digits or the maximum string length.

How does sprintf() function work in PHP?

Let us see How sprintf() function in PHP works with few examples,

Example #1

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$num1 = 321234;
$num2 = 860;
$text = sprintf("%f,%f",$num1, $num2);
echo $text;
?>
</body>
</html>
ログイン後にコピー

Output:

PHPのsprintf

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.

Example #2: for floating point decimals

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$num1 = 4563;
$text = sprintf("With 3 decimals: %1\$.3f
<br>With no decimals: %1\$u <br>With single decimal: %1\$.1f",$num1);
echo $text;
?>
</body>
</html>
ログイン後にコピー

Output:

PHPのsprintf

So here for floating values, we have specified as to no decimals, or single decimal, or 3 decimal values.

Example #3: with string specifiers

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$string1 = 'PHPv4';
echo sprintf("[%s]",$string1)."<br>";
echo sprintf("[%08s]",$string1)."<br>";
echo sprintf("[%-8s]",$string1)."<br>";
echo sprintf("[%8s]",$string1)."<br>";
echo sprintf("[%8.8s]",$string1)."<br>";
echo sprintf("[%'*8s]",$string1)."<br>";
?>
</body>
</html>
ログイン後にコピー

Output:

PHPのsprintf

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 *

Example #4: with Argument swapping

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$num = 7;
$fruits = 'Mangoes';
$arg1 = 'The %2$s are %1$d in number';
echo sprintf($arg1, $num, $fruits);
?>
</body>
</html>
ログイン後にコピー

Output:

PHPのsprintf

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.

Example #5: for all format specifiers

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$arg1 = 456;
$arg2 = -456;
$str = 57;
echo sprintf("%%b = %b",$arg1)."<br>";
echo sprintf("%%d = %d",$arg1)."<br>";
echo sprintf("%%d = %d",$arg2)."<br>";
echo sprintf("%%c = %c",$str)."<br>";
echo sprintf("%%e = %e",$arg1)."<br>";
echo sprintf("%%u = %u",$arg1)."<br>";
echo sprintf("%%u = %u",$arg2)."<br>";
echo sprintf("%%f = %f",$arg1)."<br>";
echo sprintf("%%f = %f",$arg2)."<br>";
echo sprintf("%%g = %g",$arg1)."<br>";
echo sprintf("%%g = %g",$arg2)."<br>";
echo sprintf("%%o = %o",$arg1)."<br>";
echo sprintf("%%o = %o",$arg2)."<br>";
echo sprintf("%%x = %x",$arg1)."<br>";
echo sprintf("%%x = %x",$arg2)."<br>";
echo sprintf("%%s = %s",$arg1)."<br>";
echo sprintf("%%s = %s",$arg2)."<br>";
echo sprintf("%%E = %E",$arg1)."<br>";
echo sprintf("%%F = %F",$arg1)."<br>";
echo sprintf("%%G = %G",$arg1)."<br>";
echo sprintf("%%X = %X",$arg1)."<br>";
echo sprintf("%%+d = %+d",$arg1)."<br>";
echo sprintf("%%+d = %+d",$arg2)."<br>";
?>
</body>
</html>
ログイン後にコピー

Output:

PHPのsprintf

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 サイトの他の関連記事を参照してください。

関連ラベル:
php
ソース:php
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!