파싱 데이터를 가져오니 이런식으로 다 깨져버림





어떻게 최대한 원상복구 시킨상태



$url = "http://storefarm.naver.com/amosedu/premiumreview/list?page.page=2&premiumReviewSortType=RECENT&productCategoryId=&remoteEvaluationGradeType=&remotePurchaseReviewContentType="</span>;</div><br><div>$ch <span style="color: #f92672;">= curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIESESSION, true);
curl_setopt($ch, CURLOPT_AUTOREFERER , true);



curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);

$output = curl_exec($ch);

$info = curl_getinfo($ch);

curl_close($ch);



$output = str_replace("\\t", "", $output);
$output = str_replace("\\n", "", $output);
$output = str_replace("\\", "", $output);
$output = str_replace("'","",$output);
$output = str_replace("\"","", $output );

echo $output;


코드 전문 


저기서  넘버값을 가져와야하는데

도저히 방법이 안떠오름, 

어케 해야함