首页 企业经营风险查询 企业经营风险查询示例代码 空壳判断[PHP]

空壳判断示例代码PHP

作者: 阅读数:9691 上传时间:2026-07-01

空壳判断

$url = "https://api.jisuapi.com/enterpriserisk/shellcompany?company=杭州极速互联科技有限公司&creditno=®no=&orgno=&appkey=yourappkey";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
$data = json_decode($result, true);
print_r($data);