Re: Easy way to grab a value out of XML?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



you can handle xml output as if a string file, then easily parse xml file with preg_match / preg_match_all,

smt like this can do the job:

<?php
$str="<xml version bla bla><price>somevaluehere</price><price>somevaluehere2</price><price>somevaluehere2</price>etc";


preg_match_all("/<price>([^<])*<\/price>/i", $str, $matches);
echo count($matches[0]);
for ($i=0; $i< count($matches[0]); $i++) {
echo '<br> + '.$matches[0][$i];
}
?>

but you'd better learn to handle xml files via xml parsers.











----- Original Message ----- From: "Brian Dunning" <brian@xxxxxxxxxxxxxxxx>
To: <php-general@xxxxxxxxxxxxx>
Sent: Friday, April 01, 2005 11:53 PM
Subject: Easy way to grab a value out of XML?



I've been looking at the XML commands and am feeling a bit overwhelmed. My needs are simple and I'm hoping there's an easy solution that I'm just missing. I have a hunk of well-formed XML in a variable, $xml, and it contains only one instance of <price>x.xx</price>. I just want to get the $price out of $xml. What's the simplest way?

- Brian

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux