在输出之前操纵卷曲获得的数据

时间:2012-03-09 04:02:47

标签: php curl echo

我正在使用以下代码从网站中提取html文本以自行发布。

如何在curl之前操纵echo句柄?

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_POST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);

$returned = curl_exec($ch);

curl_close ($ch);

echo $returned;

1 个答案:

答案 0 :(得分:0)

您可以操纵返回的数据:


$returned = curl_exec($ch);
curl_close ($ch);
$returned is the response so you can manipulate it

你的意思是什么