Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个脚本,可以登录 Pacer.gov,然后显示几个破产法院电子案件归档系统的链接。
我有一组单独的脚本来处理我们从这些系统下载的原始数据文本文件,但必须先将它们上传到我的应用程序。
而不是所有这些下载和上传,我想知道是否有可能让我的 PHP 以某种方式拦截这个下载?
我很难把头绕在 cURL 上。
我不确定你的问题是什么。如果您只是不知道如何使用 CURL - 这里有示例:
$oCurl = curl_init(); // initialize curl object $url = 'http://domain.com/page'; curl_setopt($oCurl, CURLOPT_URL, $url); // set URL $siteContent = curl_exec($oCurl); // you will get HTML or other file contents here