标签: php
我正在尝试使用wget和php的shell_exec下载网址。但是,结果是返回NULL。我在安装了Windows计算机Cygwin64。脚本如下:
wget
shell_exec
NULL
Cygwin64
<?php $result = shell_exec('C:/cygwin64/bin/bash.exe' . 'wget' . escapeshellcmd('https://www.google.com')); var_dump($result); ?>