21,893
社区成员




<?php
$result = `wget -O pic/001.gif http://localhost/001.gif`;
exec($result, $output, $returnVar);
print_r($output);
print_r($returnVar);
?>
$cmd = `wget -O pic/001.gif http://localhost/001.gif`;
if ($result = popen($cmd, "r"))
{
while (!feof($result))
{
$line = fgets($result, 1024);
$strContent .= $line;
//if ($pre) $line = replaceEntities($line, $this->repConfig);
}
pclose($result);
}