0
$ch = curl_init();                   //this part we set up curl 
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$xml_response = curl_exec($ch);
curl_close($ch);
header('Content-type: application/xml');  //specify as xml to not display as one long string
echo $xml_response; 
//header('Content-type: text/plain');  //specify as xml to not display as one long string
$xml = new SimpleXMLElement($xml_response);  //time to echo back the correct piece of data

$editorialReview = $xml->Items->Item->EditorialReviews->EditorialReview->Content;
ob_start();
echo '<p>Editorial review: '.html_entity_decode($editorialReview).'</p>'."\n"; 
$MineNow = ob_get_contents();
ob_end_clean();
var_dump($MineNow);

私がやりたいのは、エコーの後で、データをmysqlに投稿できるように、それを変数に格納する必要があることです。ob_startセッションを使用してキャプチャしようとしましたが、var_dumpが値を返しません!!

4

1 に答える 1

2

なぜあなたはただ使うことができないのですか:

$variable = '<p>Editorial review: '.html_entity_decode($editorialReview).'</p>'."\n";
echo $variable;
于 2012-05-29T10:18:34.293 に答える