我想获得卷曲结果的输出
我试过了:
$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 !