Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have something like this:

$url = "http://ws.geonames.org/findNearbyPostalCodes?country=pl&placename=";
$url .= rawurlencode($city[$i]);

$xml = simplexml_load_file($url);
echo $url."\n";
$cityCode[] = array(
    'city' => $city[$i], 
    'lat' => $xml->code[0]->lat, 
    'lng' => $xml->code[0]->lng
);

It's supposed to download XML from geonames. If I do print_r($xml) I get :

SimpleXMLElement Object
(
    [code] => Array
        (
            [0] => SimpleXMLElement Object
                (
                    [postalcode] => 01-935
                    [name] => Warszawa
                    [countryCode] => PL
                    [lat] => 52.25
                    [lng] => 21.0
                    [adminCode1] => SimpleXMLElement Object
                        (
                        )

                    [adminName1] => Mazowieckie
                    [adminCode2] => SimpleXMLElement Object
                        (
                        )

                    [adminName2] => Warszawa
                    [adminCode3] => SimpleXMLElement Object
                        (
                        )

                    [adminName3] => SimpleXMLElement Object
                        (
                        )

                    [distance] => 0.0
                )

I do as you can see $xml->code[0]->lat and it returns an object. How can i get the value?

share|improve this question

3 Answers

You have to cast simpleXML Object to a string.

$value = (string) $xml->code[0]->lat;
share|improve this answer
13  
almost two years later and the answer still helps. – davidethell Apr 13 '12 at 20:57
2  
More than two years later and this still helps. – enkrypt0r Sep 26 '12 at 7:19
Still helps!!!! – Ryan Oct 31 '12 at 16:18
Helped me a lot! Thanks – MartinM Nov 28 '12 at 13:07
1  
Coming up on three years and the answer still helps. – fool4jesus Jan 20 at 2:08
show 3 more comments

You can also use the magic method __toString()

$xml->code[0]->lat->__toString()
share|improve this answer
Or sprintf with the %s format. Or echo and output buffering, or or or or ... – hakre May 30 '12 at 22:36

If you know that the value of the XML element is a float number (latitude, longitude, distance), you can use (float)

$value = (float) $xml->code[0]->lat;

Also, (int) for integer number:

$value = (int) $xml->code[0]->distance;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.