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;