ตัวอย่าง
เขียนสตริงที่จัดรูปแบบให้กับตัวแปร:
<?php
$number = 9;
$str = "Beijing";
$txt = vsprintf("There are %u
million bicycles in %s.",array($number,$str));
echo $txt;
?>
ตัวอย่างเช่นเรียกใช้» ความหมายและการใช้งาน
vsprintf() ฟังก์ชั่นเขียนสตริงที่จัดรูปแบบให้กับตัวแปร
ซึ่งแตกต่างจาก sprintf() ข้อโต้แย้งใน vsprintf() จะอยู่ในอาร์เรย์ องค์ประกอบอาร์เรย์จะถูกแทรกที่ร้อยละ (%) สัญญาณในสตริงหลัก ฟังก์ชั่นนี้ทำงาน "step-by-step" ที่สัญญาณ% แรกองค์ประกอบแถวแรกจะถูกแทรกที่สัญญาณ% สององค์ประกอบแถวที่สองจะถูกแทรก ฯลฯ
Note: หากมีสัญญาณ% มากขึ้นกว่าข้อโต้แย้งคุณต้องใช้ตัวยึด ตัวยึดจะถูกแทรกหลังเครื่องหมาย% และประกอบด้วยจำนวน argument- และ "\$" ดูตัวอย่างสอง
Tip: ที่เกี่ยวข้องกับฟังก์ชั่น: fprintf() , vfprintf() , printf() , sprintf() และ vprintf()
วากยสัมพันธ์
vsprintf( format,argarray )
พารามิเตอร์ | ลักษณะ |
---|---|
format | จำเป็นต้องใช้ ระบุสตริงและวิธีการจัดรูปแบบตัวแปรในนั้น ค่ารูปแบบที่เป็นไปได้:
ค่ารูปแบบเพิ่มเติม เหล่านี้จะอยู่ระหว่าง% และตัวอักษร (example %.2f) :
Note: หากค่ารูปแบบเพิ่มเติมหลายจะใช้พวกเขาจะต้องอยู่ในลำดับเดียวกับที่ดังกล่าวข้างต้น |
argarray | จำเป็นต้องใช้ อาร์เรย์มีข้อโต้แย้งที่จะแทรกที่สัญญาณ% ในสตริงรูปแบบ |
รายละเอียดทางเทคนิค
กลับค่า: | ส่งกลับค่าอาร์เรย์เป็นสตริงที่จัดรูปแบบ |
---|---|
PHP เวอร์ชัน: | 4.1.0+ |
ตัวอย่างอื่น ๆ
ตัวอย่างที่ 1
ใช้ค่ารูปแบบ% f:
<?php
$num1 = 123;
$num2 = 456;
$txt = vsprintf("%f%f",array($num1,$num2));
echo $txt;
?>
ตัวอย่างเช่นเรียกใช้» ตัวอย่างที่ 2
ใช้ตัวยึดตำแหน่ง:
<?php
$number = 123;
$txt = vsprintf("With 2 decimals: %1\$.2f
<br>With no decimals: %1\$u",array($number));
echo $txt;
?>
ตัวอย่างเช่นเรียกใช้» ตัวอย่างที่ 3
ใช้ sprintf() แสดงให้เห็นถึงค่ารูปแบบที่เป็นไปได้ทั้งหมด:
<?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",$num1)."<br>"; // Binary
number
echo sprintf("%%c = %c",$char)."<br>"; // The ASCII Character
echo sprintf("%%d = %d",$num1)."<br>"; // Signed decimal number
echo sprintf("%%d = %d",$num2)."<br>"; // Signed decimal number
echo
sprintf("%%e = %e",$num1)."<br>"; // Scientific notation (lowercase)
echo
sprintf("%%E = %E",$num1)."<br>"; // Scientific notation (uppercase)
echo
sprintf("%%u = %u",$num1)."<br>"; // Unsigned decimal number (positive)
echo sprintf("%%u = %u",$num2)."<br>"; // Unsigned decimal number (negative)
echo sprintf("%%f = %f",$num1)."<br>"; // Floating-point number (local
settings aware)
echo sprintf("%%F = %F",$num1)."<br>"; // Floating-point
number (not local sett aware)
echo sprintf("%%g = %g",$num1)."<br>";
// Shorter of %e and %f
echo sprintf("%%G = %G",$num1)."<br>"; // Shorter
of %E and %f
echo sprintf("%%o = %o",$num1)."<br>"; // Octal number
echo sprintf("%%s = %s",$num1)."<br>"; // String
echo sprintf("%%x =
%x",$num1)."<br>"; // Hexadecimal number (lowercase)
echo sprintf("%%X =
%X",$num1)."<br>"; // Hexadecimal number (uppercase)
echo sprintf("%%+d =
%+d",$num1)."<br>"; // Sign specifier (positive)
echo sprintf("%%+d =
%+d",$num2)."<br>"; // Sign specifier (negative)
?>
ตัวอย่างเช่นเรียกใช้» ตัวอย่างที่ 4
การสาธิตการ specifiers สตริง:
<?php
$str1 = "Hello";
$str2 = "Hello world!";
echo vsprintf("[%s]",array($str1))."<br>";
echo vsprintf("[%8s]",array($str1))."<br>";
echo vsprintf("[%-8s]",array($str1))."<br>";
echo vsprintf("[%08s]",array($str1))."<br>";
echo vsprintf("[%'*8s]",array($str1))."<br>";
echo vsprintf("[%8.8s]",array($str2))."<br>";
?>
ตัวอย่างเช่นเรียกใช้» <PHP สตริงอ้างอิง