php:为什么shell_exec输出curl?

时间:2016-10-05 19:52:20

标签: php

我想获得卷曲结果的输出

我试过了:

$cmd = "curl $link";
$output = shell_exec($cmd); // ouput the curl !
echo $output; // EMPTY

我甚至试过

$cmd = "curl $link";
ob_start();
$output = shell_exec($cmd); // ouput the curl !!! why ?
$output = ob_get_clean();
echo $output; //EMPTY !

0 个答案:

没有答案