有人,请帮助我从此数组中仅获取订单ID:
array(2) {
["success"] => int(1)
["return"] => array(1) {
[100010973975966] => array(7) {
["pair"] => string(8) "doge_btc"
["type"]=> string(3) "buy"
["start_amount"]=> int(300)
["amount"]=> int(300)
["rate"]=> float(3.9E-7)
["timestamp_created"]=> string(10) "1530443432"
["status"]=> int(0)
}
}
}
我只需要提取100010973975966作为变量。 我正在使用此代码从yobit获取此数据:
$order_info = $yobit->privatePostOrderInfo(
array(
"nonce" => time(),
"order_id" => $result["return"]["order_id"]
)
);
非常感谢!
答案 0 :(得分:0)
您是说Error in [[<-.reactivevalues: Attempted to assign value to a read-only reactivevalues object
?您可以使用100010973975966
来实现。
答案 1 :(得分:0)