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

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

    <tfoot id='c7ZEN'></tfoot>

      PHP如何将字符串转换为数字?

      时间:2023-07-15
        <tbody id='tbJ8w'></tbody>
        <bdo id='tbJ8w'></bdo><ul id='tbJ8w'></ul>
      • <legend id='tbJ8w'><style id='tbJ8w'><dir id='tbJ8w'><q id='tbJ8w'></q></dir></style></legend>

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

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

                <tfoot id='tbJ8w'></tfoot>
                本文介绍了PHP如何将字符串转换为数字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我想将这些类型的值,'3''2.34''0.234343'等转换成数字.在 JavaScript 中我们可以使用 Number(),但在 PHP 中是否有类似的方法?

                I want to convert these types of values, '3', '2.34', '0.234343', etc. to a number. In JavaScript we can use Number(), but is there any similar method available in PHP?

                Input             Output
                '2'               2
                '2.34'            2.34
                '0.3454545'       0.3454545
                

                推荐答案

                有以下几种方法:

                1. 将字符串转换为数字原始数据类型:

                1. Cast the strings to numeric primitive data types:

                $num = (int) "10";
                $num = (double) "10.12"; // same as (float) "10.12";
                

              1. 对字符串进行数学运算:

              2. Perform math operations on the strings:

                $num = "10" + 1;
                $num = floor("10.1");
                

              3. 使用 intval()floatval():

                $num = intval("10");
                $num = floatval("10.1");
                

              4. 使用settype().

                这篇关于PHP如何将字符串转换为数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

              5. 上一篇:将字符串与整数进行比较会产生奇怪的结果 下一篇:在 PHP 中将整数转换为字符串

                相关文章

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

              6. <small id='V1Kzn'></small><noframes id='V1Kzn'>

                <legend id='V1Kzn'><style id='V1Kzn'><dir id='V1Kzn'><q id='V1Kzn'></q></dir></style></legend>
              7. <tfoot id='V1Kzn'></tfoot>

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