您好,登錄后才能下訂單哦!
在 PHP 中,使用 sprintf
函數可以格式化字符串,它允許你定義輸出字符串的格式。sprintf
函數的語法如下:
sprintf(format, [arg1 [, arg2 [, ...]]] )
其中 format
是格式化字符串,arg1, arg2, ...
是要插入到格式化字符串中的參數。
下面是一些使用 sprintf
的示例:
$name = "John";
$age = 30;
$message = sprintf("My name is %s and I am %d years old.", $name, $age);
echo $message; // 輸出: My name is John and I am 30 years old.
$name = "John";
$age = 30;
$score = 85;
$message = sprintf("My name is %s, I am %d years old, and I scored %d in the exam.", $name, $age, $score);
echo $message; // 輸出: My name is John, I am 30 years old, and I scored 85 in the exam.
$name = "John";
$age = 30;
$message = sprintf("My name is %1$s, I am %2$d years old.", $name, $age);
echo $message; // 輸出: My name is John, I am 30 years old. 注意:數字的順序與參數的順序相反。
在上面的示例中,%1$s
表示第一個參數應該被轉換為一個字符串,%2$d
表示第二個參數應該被轉換為一個整數。數字表示參數的順序。
$data = [
['John', 30],
['Jane', 28],
['Doe', 35]
];
$max_name_length = max(strlen($name) for $name in array_column($data, 0));
$max_age_length = max(strlen($age) for $age in array_column($data, 1));
foreach ($data as $entry) {
$message = sprintf("%-*s | %-*d", $max_name_length, $entry[0], $max_age_length, $entry[1]);
echo $message . PHP_EOL;
}
輸出:
John | 30
Jane | 28
Doe | 35
注意:%-*s
和 %-*d
中的 -
表示左對齊,*
表示使用最小寬度,s
和 d
分別表示字符串和整數。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。