Code speaking
$xchange = new SimpleXMLElement('http://www.bankisrael.gov.il/currency.xml', NULL, TRUE);
$filterCurrencies = array( 'USD', 'GBP' );
$filter = implode( array_map( function($filler) { return 'text()="'.$filler.'"'; }, $filterCurrencies), ' or ' );
$xpathQuery = $xpath = '//CURRENCYCODE[%filter%]/parent::*';
$xpathQuery = str_replace('%filter%', , $xpathQuery);
$currencies = $xchange->xpath($xpathQuery);
/** I do know you already have to code to echo it ... the code is tested, feel free to copy&pase **/
Step by Step
Okay, first of all, you're using a SimpleXML object to read in the data from bank israel. I suggest to leverage this object to do most of the work (which is much faster compared to filtering with PHP, although SimpleXML isn't the best thing for performance).
So first of all what do we want to accomplish?
Getting the Data of a based on the content of its element.
For an Webdesigner this should sound like CSS, but not quite right. For a web developer having his hands on an XML that should sound like XPath, which is the golden choice!
Fortunately, SimpleXML enables us to use XPath, so we'll build a query:
XPath basics:
//CURRENCYCODE will select any currencycode element
//CURRENCYCODE/parent::* will select the currencycodes parent (<CURRENCY>), which is where our data is
//CURRENCYCODE[text()="JPY"] will select only <CURRENCY> elements whose text equals JPY exactly.
Here we salt with our requirementslist:
$filterCurrencies = array( 'USD', 'GBP' ); // we want us dollars and british pounds
$filter = implode( array_map( function($token) { return 'text()="'.$token.'"'; }, $filterCurrencies), ' or ' );
// this will make a string like 'text()="USD" or text()="GBP"' by mapping the filter against the requirements string (currenciecodes get tokens) glueing it with a logical or
Now the only thing left to do is to integrate that with our XPATH template
$xpath = '//CURRENCY[%filter%]/parent::*';
$xpath = str_replace('%filter%', $filter, $xpath);
$currencies = $xchange->xpath($xpath);
Happy looping!