xml 파싱 도움좀 주세요..

11번가 파싱을 하고있습니다..

파싱법을 정확하게 모르고 구글링으로 할려고 하니깐 잘 모르겠네요..

xml은 참고소스형식으로 불러 옵니다.


메인 페이지에서
$xmlParser = new XMLParser();
$parser = @xml_parser_create();
if (!is_resource($parser)){
die("PHP XML parser에러");
} else {
xml_set_object($parser, $xmlParser);
xml_set_element_handler($parser, "startHandler", "endHandler");
xml_set_character_data_handler($parser, "cdataHandler");
}

if (!xml_parse($parser, $body, true)) {
printf("XML error: %s at line %d\n",
xml_error_string(xml_get_error_code($parser)),
xml_get_current_line_number($parser));
}

if (is_resource($parser)) {
xml_parser_free($parser);
unset( $parser );
}


이런식으로 해놓았습니다.

xml_set_element_handler($parser, "startHandler", "endHandler");
xml_set_character_data_handler($parser, "cdataHandler");

이부분이 정확하게 어떻게 처리하는지를 모르겠네요.




class XMLParser {
var $inItem = FALSE;
var $currentElement = FALSE;
var $itemInfo = array();
var $cdata = "";

function startHandler($parser, $element, $attr) {
switch ($element) {
case "ITEM":
$this->inItem = TRUE;
break;

case "TITLE" :
case "AUTHOR" :
case "COVER" :
case "PUBLISHER" :
if ($this->inItem) {
$this->currentElement = $element;
$this->cdata = "";
}
break;

default:
$this->currentElement = FALSE;
break;
}
}

function endHandler($parser, $element) {
if ($element == "ITEM") {
$this->inItem = FALSE;
$this->currentElement = FALSE;
}

if ($this->currentElement) {
$this->itemInfo[$this->currentElement] = $this->cdata;
$this->currentElement = FALSE;
$this->cdata = "";
}
}


function cdataHandler($parser, $cdata){
  if($this->inItems==TRUE){
if($this->currentElement=="PRODUCTNAME"){
$this->itemInfo["PRODUCTNAME"] = $cdata;
} else if($this->currentElement=="PRODUCTIMAGE"){
$this->itemInfo["PRODUCTIMAGE"] = $cdata;
} else if($this->currentElement=="DETAILPAGEURL"){
$this->itemInfo["DETAILPAGEURL"] = $cdata;
}   
  }
}

}

구글링해서 얻은 원본 소스는 이거인데.. 어디를 수정해야 하는지 도움좀 주십시요.
 
 
 
///////////////xml
- <ProductSearchResponse>
02   - <Request>
03     - <Arguments>
04       <Argument name="key" value="234" /> 
05       <Argument name="apiCode" value="ProductSearch" /> 
06       <Argument name="keyword" value="cp671 225/55R17" /> 
07      </Arguments>
08      <ProcessingTime>0.023 sec</ProcessingTime> 
09   </Request>
10   
11 - <Products> 
12     <TotalCount>8</TotalCount> 
13   
14 - <Product>  <==이부분 부터 물품 반복
15   <ProductCode>168246154</ProductCode> 
16 - <ProductName>
17 - <![CDATA[ 넥센타이어 NEXEN CP671 [225/55R17] 중대형 세단에 적합한 사계절 패턴 디자인, 넥센 고급 타이어, 제조일로 부터 3~4개월 이내 타이어, 왕도매 타이어
18   ]]> 
19   </ProductName>
20   <ProductPrice>90800</ProductPrice> 
21 - <ProductImage>
22 - <![CDATA[ http://i.011st.com/t/080/i/2/4/6/1/5/4/168246154_B_6.jpg
23   ]]> 
24   </ProductImage>
25 - <ProductImage100>
26 - <![CDATA[ http://i.011st.com/t/100/i/2/4/6/1/5/4/168246154_B_6.jpg
27   ]]> 
28   </ProductImage100>
29 - <Text1>
30 - <![CDATA[  
31   ]]> 
32   </Text1>
33 - <Text2>
34 - <![CDATA[  
35   ]]> 
36   </Text2>
37 - <SellerNick>
38 - <![CDATA[ 왕도매타이어
39   ]]> 
40   </SellerNick>
41   <Seller>wholetire</Seller> 
42   <SellerGrd>1</SellerGrd> 
43   <Rating>27</Rating> 
44 - <DetailPageUrl>
45 - <![CDATA[ http://www.11st.co.kr/product/SellerProductDetail.tmall?method=getSellerProductDetail&prdNo=168246154
46   ]]> 
47   </DetailPageUrl>
48   <SalePrice>71940</SalePrice> 
49 - <Delivery>
50 - <![CDATA[ 무료
51   ]]> 
52   </Delivery>
53   <ReviewCount>9</ReviewCount> 
54   <BuySatisfy>100</BuySatisfy> 
55   <MinorYn>Y</MinorYn> 
56 - <Benefit>
57   <Discount>18860</Discount> 
58   <Mileage>0</Mileage> 
59   </Benefit>
60   </Product>
|

댓글 1개

아래소스는 제가 xml처리한 다른 방식입니다.
간추려서 수정을 했습니다.
참고가 되실길 바랍니다.

---------------------------------------------
ini_set('allow_url_fopen','ON') ;

$xml = @simplexml_load_file(주소);
$cnt = count($xml->Product);

for($i=0;$i<$cnt;$i++){
print $xml->Product[$i]->ProductName;
}
---------------------------------------------
http://php.net/manual/en/function.simplexml-load-file.php
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 479
13년 전 조회 620
13년 전 조회 1,553
13년 전 조회 1,903
13년 전 조회 773
13년 전 조회 1,003
13년 전 조회 2,102
13년 전 조회 1,004
13년 전 조회 1,045
13년 전 조회 736
13년 전 조회 2,098
13년 전 조회 717
13년 전 조회 863
13년 전 조회 1,191
13년 전 조회 1,337
13년 전 조회 2,950
13년 전 조회 3,168
13년 전 조회 676
13년 전 조회 1,177
13년 전 조회 659
13년 전 조회 1,232
13년 전 조회 1,020
13년 전 조회 903
13년 전 조회 1,205
13년 전 조회 488
13년 전 조회 1,879
13년 전 조회 1,623
13년 전 조회 1,356
13년 전 조회 792
13년 전 조회 1,275
13년 전 조회 1,479
13년 전 조회 1,095
13년 전 조회 2,271
13년 전 조회 929
13년 전 조회 657
13년 전 조회 855
13년 전 조회 3,640
13년 전 조회 2,512
13년 전 조회 1,069
13년 전 조회 1,238
13년 전 조회 2,637
13년 전 조회 1,647
13년 전 조회 798
13년 전 조회 869
13년 전 조회 2,263
13년 전 조회 761
13년 전 조회 1,006
13년 전 조회 509
13년 전 조회 658
13년 전 조회 1,395
13년 전 조회 2,937
13년 전 조회 704
13년 전 조회 950
13년 전 조회 1,346
13년 전 조회 762
13년 전 조회 2,387
13년 전 조회 975
13년 전 조회 1,663
13년 전 조회 1,894
13년 전 조회 1,715
13년 전 조회 1,035
13년 전 조회 1,319
13년 전 조회 838
13년 전 조회 690
13년 전 조회 1,359
13년 전 조회 1,047
13년 전 조회 890
13년 전 조회 813
13년 전 조회 979
13년 전 조회 760
13년 전 조회 1,280
13년 전 조회 1,002
13년 전 조회 691
13년 전 조회 1,294
13년 전 조회 921
13년 전 조회 1,659
13년 전 조회 1,088
13년 전 조회 3,555
13년 전 조회 1,614
13년 전 조회 2,206
13년 전 조회 835
13년 전 조회 498
13년 전 조회 1,181
13년 전 조회 1,961
13년 전 조회 859
13년 전 조회 2,097
13년 전 조회 804
13년 전 조회 1,162
13년 전 조회 1,851
13년 전 조회 1,171
13년 전 조회 839
13년 전 조회 1,544
13년 전 조회 3,848
13년 전 조회 567
13년 전 조회 640
13년 전 조회 835
13년 전 조회 3,957
13년 전 조회 1,304
13년 전 조회 1,481
13년 전 조회 1,493
🐛 버그신고