如何获取 json 输出的内容

How to get the content of a json output

我有这个json

Print_r($send);

    {"status":"INSUFFICIENT_APIBALANCE"}

我有这个

$send = var_dump(json_decode($send));

现在我正在尝试这样做

   if ($send->status == "INSUFFICIENT_APIBALANCE"){

     echo "Recharge Now";
}else echo "testing";

但是没有得到预期的结果,请帮助

删除var_dump():

$send = json_decode($send);