gpt4 book ai didi

php - curl_exec() 参数删除整数的最后 2 位

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

我在 WordPress 中使用 softtouch API,并通过 curl 将数据发布到 API。

但作为回应,我无法在函数中发送大整数值。我没有得到数据类型范围问题或 curl 。

下面是我的代码:

//create reservation
$prod_items = array();
$single_item = array('product_uid'=>11449701010101);
$prod_items[] = $single_item;

$res_params = array(
'customer_id' => 1111,
'payment_type' => '',
'invoice_address_id' => 123,
'delivery_address_id' => 142,
'giftlist_id' => '',
'store_id' => '',
'items' => $prod_items
);
$res_url = $base_url . 'reservations';
$res_content = json_encode($res_params);

$res_curl = curl_init();
curl_setopt($res_curl, CURLOPT_HTTPHEADER, array('Authorization: ' . $authToken, 'Content-Type: application/json'));
curl_setopt($res_curl, CURLOPT_POST, true);
curl_setopt($res_curl, CURLOPT_POSTFIELDS, $res_content);
curl_setopt($res_curl, CURLOPT_URL, $res_url);
curl_setopt($res_curl, CURLOPT_RETURNTRANSFER, true);

$res_response = curl_exec($res_curl);

if ($res_response === FALSE)
die(curl_error($res_curl));
curl_close($res_curl);
$res_array = json_decode($res_response);

在向 curl_exec() 函数发送数据时,它会删除 product_uid 的最后两位数字,因为我将其传递给 11449701010101 它发送它作为 114497010101

是整数范围问题还是 curl 函数问题?

最佳答案

tl:dr 似乎其他(在处理 CURL 请求的脚本中)截断了 product_uid。 (?)

array('product_uid'=>11449701010101)

如果您使用的是 32 位系统(PHP 编译为 32 位),则 11449701010101 确实超出了 32 位整数范围。但是,在这种情况下,PHP 静默 将数字转换为 float ,在此实例中不会“丢失”任何内容。

json_encode($res_params);

PHP 函数 json_encode() 将传递的数组转换为字符串表示形式(JSON 字符串)。什么都没有丢失。 11449701010101 值被保留。

While sending data to the curl_exec() function it removes the last two digits

正在传输的 (POST) 数据是一个普通字符串,因此在这个阶段不会有任何东西丢失到各个属性。

如果接收脚本随后对传输的 JSON 字符串进行解码,再次对其进行编码并发回,则数据将原封不动地返回。 product_uid 是一个 float ,而不是一个整数(因为它在原始数据中)。

如果您特别将 11449701010101 强制为整数(例如 (int)11449701010101),那么您将得到 -681801035 - 最后 2 位数字不只是被截断。对于要截断的最后 2 位数字,似乎正在进行某种字符串操作?

因此,在处理此数据的过程中似乎有其他东西(此处未显示)可能会截断该值。 (?)

关于php - curl_exec() 参数删除整数的最后 2 位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40917637/

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