我想从api链接中选择数据

时间:2019-06-28 11:50:23

标签: php

This my json data..
I want select data from json

result: {
    addr: "1MHKiQmEJPaxQA4mBbMyxqU6VQ9sG7DSXu",
    workers: [
        [
            "", {
                a: "117.88"
            },
            197,
            1,
            "1",
            2,
            20
        ]
    ],
    algo: 20
},

我要选择197 ..     怎么样?

请检查我的代码

<?php

$hash = file_get_contents("https://api.nicehash.com/api?method=stats.provider.workers&addr=1MHKiQmEJPaxQA4mBbMyxqU6VQ9sG7DSXu&algo=20");

$nice = json_decode($hash);
$a=$nice->result->workers;   
echo $a;

0 个答案:

没有答案