"Qualifiers->ItemCondition", "ItemSubcondition" =>"Qual"/> "Qualifiers->ItemCondition", "ItemSubcondition" =>"Qual">
Home > Backend Development > PHP Tutorial > 多个foreach嵌套循环的有关问题

多个foreach嵌套循环的有关问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 12:06:28
Original
1229 people have browsed it

多个foreach嵌套循环的问题

<br />$xml = simplexml_load_file($xml_uri);<br /><br />$offer_url=array(<br />					"ItemCondition"					=>"Qualifiers->ItemCondition",<br />					"ItemSubcondition"				=>"Qualifiers->ItemSubcondition",<br />					"FulfillmentChannel"			=>"Qualifiers->FulfillmentChannel",<br />					"ShipsDomestically"				=>"Qualifiers->ShipsDomestically",<br />					"ShippingTime"					=>"Qualifiers->ShippingTime->Max",<br />					"SellerPositiveFeedbackRating"	=>"Qualifiers->SellerPositiveFeedbackRating",<br />					"NumberOfOfferListingsConsidered"=>"NumberOfOfferListingsConsidered",<br />					"SellerFeedbackCount"			=>"SellerFeedbackCount",<br />					"LandedPrice"					=>"Price->LandedPrice->Amount",<br />					"ListingPrice"					=>"Price->ListingPrice->Amount",<br />					"Shipping"						=>"Price->Shipping->Amount",<br />					"MultipleOffersAtLowestPrice"	=>"MultipleOffersAtLowestPrice"<br /><br />);<br /><br />foreach($xml->GetLowestOfferListingsForASINResult->Product->LowestOfferListings->LowestOfferListing as $key)<br />{<br />foreach($offer_url as $name=>$value)<br />{<br />echo  $name."->".$key->$value."--------";<br /><br />}<br />echo "<br>";<br />}<br />  } <br />    ?><br />
Copy after login


$key->$value没有结果,请问应该怎么写??
------解决思路----------------------
echo eval("return \$key->$value;");

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template