"Qualifiers->ItemCondition", "ItemSubcondition" =>"Qual"/> "Qualifiers->ItemCondition", "ItemSubcondition" =>"Qual">

首页 >后端开发 >php教程 >多个foreach嵌套循环的有关问题

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB原创
2016-06-13 12:06:281213浏览

多个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 />


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

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn