php中格式化輸出函數vprintf printf sprintf sscanf

來源:互聯網
上載者:User

vprintf() 函數輸出格式化的字串

數 format 是轉換的格式,以百分比符號 ("%") 開始到轉換字元結束。下面的可能的 format 值:

%% - 返回百分比符號
%b - 位元
%c - 依照 ascii 值的字元
%d - 帶符號十進位數
%e - 可續計數法(比如 1.5e+3)
%u - 無符號十進位數
%f - 浮點數(local settings aware)
%f - 浮點數(not local settings aware)
%o - 八位元
%s - 字串
%x - 十六進位數(小寫字母)
%x - 十六進位數(大寫字母)

看執行個體
*/
$str="hello";           //定義字串
$number=123;           //定義數值
vprintf("%s world. day number %u",array($str,$number));   //輸出格式化的字串

//執行個體二
$num1=123;           //定義數值1
$num2=456;           //定義數值2
$txt=vsprintf("%f%f",array($num1,$num2));     //輸出格式化字串到變數
echo $txt;

/*

printf() 函數輸出格式化的字串。

文法
printf(format,arg1,arg2,arg++)
arg1, arg2, ++ 等參數將插入到主字串中的百分比符號 (%) 符號處。該函數是逐步執行的。在第一個 % 符號中,插入 arg1,在第二個 % 符號處,插入 arg2,依此類推。

*/
$str="hello world";          //定義首尾有空格的字串
printf($str);           //輸出轉換後的結果

/*

sprintf() 函數把格式化的字串寫寫入一個變數中。

文法
sprintf(format,arg1,arg2,arg++)

*/
$str="hello";          //定義字串
$number=123;          //定義數值
$txt= ("%s world. day number %u",$str,$number);  //返回格式化字串到變數
echo $txt;           //輸出結果hello world. day number 123

$str="123456abcdedfbcdef";         //定義字串
sscanf($str, "%[^a-z]", $result);         //取其中的非大寫字母
printf("result=%s", $result);         //輸出結果

/*以下代碼最終顯示11,並將"hello world"字串寫入到test.txt檔案*/
$str="hello";          //定義字串
$file=fopen("test.txt","w");        //開啟檔案
echo vfprintf($file,"%s world",$str);      //輸出資料到流並顯示結果11

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.