gpt4 book ai didi

php - PHP 中的 virustotal.com API 示例?

转载 作者:行者123 更新时间:2023-12-02 05:13:11 24 4
gpt4 key购买 nike

有人有使用 VirusTotal.com 公共(public) API 进行 URL 扫描的 PHP 示例吗?

API 可在此处获得: http://www.virustotal.com/advanced.html

有一个 Python/JSON 示例,但我对这两个都没有经验:(

最佳答案

您只需要使用 file_get_contents 检索报告 json这样:

$json = file_get_contents('https://www.virustotal.com/api/get_url_report.json');

然后使用json_decode将您的 json 转换为 php 数组:

$array = json_decode($json);

查看结果:

var_dump($array);

发布数据使用 curl,related question .

关于php - PHP 中的 virustotal.com API 示例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3573885/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com