<tfoot id='eOb7m'></tfoot>
    <bdo id='eOb7m'></bdo><ul id='eOb7m'></ul>

        <small id='eOb7m'></small><noframes id='eOb7m'>

      1. <i id='eOb7m'><tr id='eOb7m'><dt id='eOb7m'><q id='eOb7m'><span id='eOb7m'><b id='eOb7m'><form id='eOb7m'><ins id='eOb7m'></ins><ul id='eOb7m'></ul><sub id='eOb7m'></sub></form><legend id='eOb7m'></legend><bdo id='eOb7m'><pre id='eOb7m'><center id='eOb7m'></center></pre></bdo></b><th id='eOb7m'></th></span></q></dt></tr></i><div id='eOb7m'><tfoot id='eOb7m'></tfoot><dl id='eOb7m'><fieldset id='eOb7m'></fieldset></dl></div>

        <legend id='eOb7m'><style id='eOb7m'><dir id='eOb7m'><q id='eOb7m'></q></dir></style></legend>

        为什么 PHP 用科学记数法打印我的数字,当我将它指定为 .000021 时?

        时间:2023-06-24
          <i id='JkPnc'><tr id='JkPnc'><dt id='JkPnc'><q id='JkPnc'><span id='JkPnc'><b id='JkPnc'><form id='JkPnc'><ins id='JkPnc'></ins><ul id='JkPnc'></ul><sub id='JkPnc'></sub></form><legend id='JkPnc'></legend><bdo id='JkPnc'><pre id='JkPnc'><center id='JkPnc'></center></pre></bdo></b><th id='JkPnc'></th></span></q></dt></tr></i><div id='JkPnc'><tfoot id='JkPnc'></tfoot><dl id='JkPnc'><fieldset id='JkPnc'></fieldset></dl></div>

                <bdo id='JkPnc'></bdo><ul id='JkPnc'></ul>
                  <tbody id='JkPnc'></tbody>

                  <small id='JkPnc'></small><noframes id='JkPnc'>

                  <tfoot id='JkPnc'></tfoot>

                • <legend id='JkPnc'><style id='JkPnc'><dir id='JkPnc'><q id='JkPnc'></q></dir></style></legend>
                • 本文介绍了为什么 PHP 用科学记数法打印我的数字,当我将它指定为 .000021 时?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在 PHP 中,我有以下代码:

                  In PHP I have the following code:

                  <?PHP
                    $var = .000021;
                    echo $var;
                  ?>
                  

                  输出是2.1E-5!

                  为什么?它应该打印 .000021

                  Why? it should print .000021

                  推荐答案

                  使用 number_format() 得到你在追求什么:

                  Use number_format() to get what you're after:

                  print number_format($var, 5);
                  

                  还要检查sprintf()

                  这篇关于为什么 PHP 用科学记数法打印我的数字,当我将它指定为 .000021 时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:php脚本中的双引号echo 下一篇:为什么 PHP 中的函数和方法不区分大小写?

                  相关文章

                • <tfoot id='ar9Nv'></tfoot>

                      <bdo id='ar9Nv'></bdo><ul id='ar9Nv'></ul>

                      <small id='ar9Nv'></small><noframes id='ar9Nv'>

                      <i id='ar9Nv'><tr id='ar9Nv'><dt id='ar9Nv'><q id='ar9Nv'><span id='ar9Nv'><b id='ar9Nv'><form id='ar9Nv'><ins id='ar9Nv'></ins><ul id='ar9Nv'></ul><sub id='ar9Nv'></sub></form><legend id='ar9Nv'></legend><bdo id='ar9Nv'><pre id='ar9Nv'><center id='ar9Nv'></center></pre></bdo></b><th id='ar9Nv'></th></span></q></dt></tr></i><div id='ar9Nv'><tfoot id='ar9Nv'></tfoot><dl id='ar9Nv'><fieldset id='ar9Nv'></fieldset></dl></div>
                      <legend id='ar9Nv'><style id='ar9Nv'><dir id='ar9Nv'><q id='ar9Nv'></q></dir></style></legend>