Rumah > Artikel > pembangunan bahagian belakang > sprintf dalam PHP
sprintf dalam php ialah fungsi yang digunakan untuk menulis rentetan terformat kepada pembolehubah dan mengembalikan rentetan terformat. Dalam PHP, versi 4 dan ke atas menyokong fungsi sprintf ini. Fungsi sprintf() adalah serupa dengan fungsi printf(), tetapi perbezaan utama dan satu-satunya antara kedua-duanya ialah sprintf() menyimpan output ke dalam rentetan dan bukannya memaparkan output berformat pada pelayar seperti fungsi printf(). Fungsi sprintf() boleh berfungsi dengan gema, iaitu, rentetan terformat yang dikembalikan oleh sprintf() dicetak pada penyemak imbas menggunakan gema. Marilah kita mendalami topik tersebut dan melihat sintaksnya, format yang boleh diakses dan menyelesaikan beberapa program.
Mulakan Kursus Pembangunan Perisian Percuma Anda
Pembangunan web, bahasa pengaturcaraan, ujian perisian & lain-lain
Berikut ialah sintaks fungsi sprintf() dalam PHP.
sprintf(format, arg1, arg2, arg3, …….)
Di sini, arg1, arg2, arg3, dsb., ialah parameter sprintf(). arg1 ialah hujah yang diperlukan untuk disisipkan pada mulanya. arg2, arg3, ……… ialah argumen pilihan untuk disisipkan.
Format: Ia adalah parameter yang diperlukan dan menentukan rentetan tentang cara memformat pembolehubah di dalamnya.
Di bawah ialah format yang mungkin:
Parameter
|
Penerangan |
||||||||||||||||||||||||||||||||
%b | Argumen hadir sebagai nombor binari | ||||||||||||||||||||||||||||||||
%% | Mengembalikan % tanda | ||||||||||||||||||||||||||||||||
%d | Parameter dianggap sebagai integer positif, diwakili sebagai nombor perpuluhan | ||||||||||||||||||||||||||||||||
%c | Parameter dianggap sebagai integer, diwakili sebagai aksara dengan ASCII | ||||||||||||||||||||||||||||||||
%e | Penentukan ketepatan yang menentukan bilangan digit selepas titik perpuluhan. Notasi saintifik dengan huruf kecil | ||||||||||||||||||||||||||||||||
%u | Parameter dianggap sebagai integer, diwakili sebagai unsigned integer | ||||||||||||||||||||||||||||||||
%f | Nombor titik terapung(tempat) | ||||||||||||||||||||||||||||||||
%g | Format umum | ||||||||||||||||||||||||||||||||
%o | Diwakili sebagai nombor Oktal | ||||||||||||||||||||||||||||||||
%x | Diwakili sebagai nombor Heksadesimal dengan huruf kecil | ||||||||||||||||||||||||||||||||
%s | Argumen dibentangkan dan dianggap sebagai rentetan | ||||||||||||||||||||||||||||||||
%E | Serupa dengan %e specifier tetapi dengan Huruf Besar. | ||||||||||||||||||||||||||||||||
%F | Nombor titik terapung(Bukan tempatan) | ||||||||||||||||||||||||||||||||
%G | Serupa dengan penentu %g tetapi menggunakan %E dan %F | ||||||||||||||||||||||||||||||||
%X | Diwakili dengan nombor Heksadesimal tetapi dengan huruf besar |
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:
<!DOCTYPE html> <html> <body> <?php $num1 = 321234; $num2 = 860; $text = sprintf("%f,%f",$num1, $num2); echo $text; ?> </body> </html>
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:
<!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:
So here for floating values, we have specified as to no decimals, or single decimal, or 3 decimal values.
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:
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:
<!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:
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:
<!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:
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.
Atas ialah kandungan terperinci sprintf dalam PHP. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!