gpt4 book ai didi

php - json_encoding 时如何获取数字 float (不是字符串!)?

转载 作者:可可西里 更新时间:2023-10-31 23:28:10 26 4
gpt4 key购买 nike

我需要一个使用点分隔符的数字 float ,它在 (json) 编码后保持数字,以便将 POST header 发送到第三方 API。

然而,已经尝试了几个小时,却无法让它工作。

我需要的是:

{
"price": 17.95,
// BUT NOT:
"price": "17.95" OR 17,95
}

为什么?因为接收 API 端点检查第一个值,但对后两个值抛出一个非数字错误。

现在,我们在荷兰。所以我们的“语言环境”使用逗号分隔符。通过将区域设置从 nl_NL 设置为 en_US 来解决这个问题,为 number_format 函数提供正确的格式,但是,作为字符串。

使用 (float) 转换逗号或点分隔的字符串会导致它从分隔点丢失任何值。 (“17.95” 变为 17)

更新产品详细信息是一个带有几个参数的函数,无需修改 cURL 即可传递这些参数。它将 POST 变量数组编码为它应该在上面的内容。我只能通过以下内容:

$client->updateShopItem($shopId, $articleNumber, $updateArray)

$shopId = 整数$articleNumber = 字符串$updateArray = 数组

完整,正确,调用看起来像:

$client->updateShopItem(12345, "a1b2c3", [
"price" => 17.95,
"sale_price" => 12.99,
//... other values
]);

代替上面示例中的值使用的值是字符串类型:“17,95”。

尝试过:

$price = "17,95" //Starting point (locale = nl_NL)

number_format($price, 2) // "17.00" - incorrect type and value
number_format(str_replace(',', '.', $price), 2) // "17.95" - string
(float) str_replace(',', '.', $price); // 17,95 - comma
(float) number_format(str_replace(',', '.', $price), 2) //17,95 - comma

setLocale(LC_ALL, 'en_US'); //Changing locale here, US uses dot separator

$check = locale_get_default(); // "en_US"

number_format($price, 2) // "17.00" - incorrect type and value
number_format(str_replace(',', '.', $price), 2) // "17.95" - string
(float) number_format(str_replace(',', '.', $price), 2) // 17,95 - comma
(float) str_replace(',', '.', $price); // 17,95 (can't figure why comma with US locale)

额外测试以查看 json_encode() 对不同类型/值的影响:

json_encode(["test1" => "17,95", "test2" => 17.95]);

//Results in:
{"test1":"17,95","test2":17.95}

更新:为避免混淆完整代码,仅删除不相关的内容,否则未经编辑。已包含语言环境 se

setlocale(LC_ALL, 'nl_NL');
ini_set('intl.default_locale', 'nl-NL');
$update = [
'price' => ((float)number_format(str_replace(',', '.', $prijs), 2)),
'discount_price' => (float) str_replace(',', '.', $actieprijs),
];

setlocale(LC_ALL, 'en_US');
ini_set('intl.default_locale', 'en-US');
// Update a shopitem
$update2 = [
'price' => ((float)number_format(str_replace(',', '.', $prijs), 2)),
'discount_price' => (float) str_replace(',', '.', $actieprijs),
];

enter image description here

更新 2:找到解决方案在与@KevinStich 就他的 answer 发表一些评论后发现尝试更改语言环境时的问题在于我在 Windows 上。

在上面需要设置的地方添加以下代码后,他的回答解决了这个问题:

if (!setlocale(LC_ALL, 'en_US.utf8')) { //Works on "normal" server/Linux stuff
setlocale(LC_ALL, 'us'); //Windows is special
}

找到 in the docs如果 setlocale() 函数没有设置新的语言环境,则返回 false,否则返回新的语言环境。这导致了上述情况,@KevinStich 的回答奏效了。

最佳答案

@Nukeface 的问题与区域设置和传递给 setlocale() 的不同变量有关。基于平台;特别是 Windows 使用与 unix 系统不同的语言环境名称。

setlocale 的返回值可以帮助您诊断调用是否有效,您可以使用 localeconv()查看您当前的一些区域设置。

您可能只想针对 json_encode() 的信息执行此操作,因此请考虑将 setlocale 包装到正确的语言环境、编码,然后将 setlocale 包装回您自己的标准功能。

以下是引起评论讨论的旧答案:


您的类型转换范围界定似乎有些奇怪。我以前见过这个问题,但不确定要解决什么问题,我用更多的括号解决了它。

这在 REPL 中对我有用

var_dump(
((float)number_format(str_replace(',', '.', $price), 2))
);
float(17.95)

要确保这不是 json_encode 问题:

$price = "17,95";
$a = array();
$a[] = $price;
$a[] = ((float)number_format(str_replace(',', '.', $price), 2));

echo json_encode($a); // Prints ["17,95",17.95]

关于php - json_encoding 时如何获取数字 float (不是字符串!)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40867012/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com