如何在PHP中将“0.05”变成0.05?

时间:2017-01-03 18:31:25

标签: php string numbers

我在PHP中有一个字符串“0.05”。如何将其转换为带有intval()的数字?

Wenn我试试这个

intval("0.05")

它只是给出了

0

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

键入将其转换为浮动

var check_count = $(".children:checked").length;
if (check_count == 0) {
    $(".header").prop("checked", false);
}

请注意,这可能需要floats are notoriously imprecise

答案 1 :(得分:1)

您正在使用 int -val。这将给你一个整数答案。由于您使用的是小数,您需要的是SELECT b.* FROM InitialPolData b left outer join MasterLockInsNew a on b.id = a.id where a.id is null

floatval

请参阅the documentation