我在 php 脚本中使用 wget,需要获取下载文件的名称。
例如,如果我尝试
<?php
system('/usr/bin/wget -q --directory-prefix="./downloads/" http://www.google.com/');
?>
我将在下载目录中获得一个名为 index.html 的文件。
编辑:该页面并不总是谷歌,目标可能是图像或样式表,所以我需要找出下载的文件的名称。
我想要这样的东西:
<?php
//Does not work:
$filename = system('/usr/bin/wget -q --directory-prefix="./downloads/" http://www.google.com/');
//$filename should contain "index.html"
?>