用法:1、新建一個php範例檔;2、在檔案中加入html架構程式碼;3、在body標籤中加入php程式碼並使用sprintf函數;4、透過瀏覽器觀察效果即可。
php中sprintf函數的用法
具體使用方法:
1.新建一個php範例檔。
2.在檔案中加入html架構程式碼。
<!DOCTYPE html> <html> <head> <title>php</title> </head> <body> </body> </html>
3.在body標籤中加入php程式碼並使用sprintf函數。
<?php $number = 2; $str = "Shanghai"; $txt = sprintf("There are %u million cars in %s.",$number,$str); echo $txt; ?>
把百分號%符號替換成一個作為參數傳遞的變數。
4.透過瀏覽器觀察效果即可。
sprintf定義:
sprintf()函數可以把格式化的字串寫入變數中。
以上是php中sprintf函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!