在PHP中,%s與%d分別是什麼意思?

來源:互聯網
上載者:User
在PHP中,經常會遇見%s與%d,本篇將介紹%s與%d是什麼意思?

PHP sprintf() 函數用到的參數

printf — 輸出格式化字串

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

%% - 返回百分比符號

%b - 位元

%c - 依照 ASCII 值的字元

%d - 帶符號十進位數

%e - 可續計數法(比如 1.5e+3)

%u - 無符號十進位數

%f - 浮點數(local settings aware)

%F - 浮點數(not local settings aware)

%o - 八位元

%s - 字串

%x - 十六進位數(小寫字母)

%X - 十六進位數(大寫字母)

<?php$str = "Hello";$number = 123;$txt = sprintf("%s world.  number %d",$str,$number);echo $txt;?>

輸出:

Hello world. number 123

本篇將會講解%s與%d是什麼意思,更多相關內容請關注php中文網。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.