[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.4

Convert XML ot an array!

Asked by mightofnight in PHP Scripting Language, Extensible HTML (XHTML)

Tags: xampp, undefined, call

What i am basically trying to do is convert an XML feed to an array.  For my project i submit a query to a website and they provide me an XML feed with all the data..  I grab this feed via a URL..

I have a function i found on this site that worked perfectly for me


here is the function
//********************************************************
$xml = file_get_contents($url);
        $doc = domxml_open_mem($xml);
        $array = xmlnode2array($doc->root());

echo '<strong>This String was made from the contents of the XML Document whihc was recieved live from the vin decoding website: '.$array['decoded_loop']['decoded_year'].' '.$array['decoded_loop']['decoded_make'].' '.$array['decoded_loop']['decoded_model'].'</strong>';

echo '<pre>';
print_r($array);
echo '</pre>';
/**
* Recursive function to convert xml root node to big assoc array
*/
function xmlnode2array($node, $newMap="") {
        static $map;
        if (!$map && $newMap) $map = array_flip($newMap); // reverse map
        if ($node->type==XML_ELEMENT_NODE) {
                if ($attrArray = $node->attributes()) {
                        // parse attributes //
                        foreach($attrArray AS $attr) {
                                $key = '@' . $attr->name;
                                if ($map[$key])         $out[$map[$key]] = $attr->value;
                                else                    $out[$key] = $attr->value;
                        }
                }
                if ($childArray = $node->children()) {
                        // add child nodes //
                        foreach($childArray AS $child) {
                                if ($child->type==XML_ELEMENT_NODE) {
                                        $tagName = $child->tagname;
                                        if ($tagName=='ARRAY_DATA') {
                                                $out[] = xmlnode2array($child);
                                        } else if ($map[$tagName]) {
                                                $out[$map[$tagName]] = xmlnode2array($child);
                                        } else {
                                                $out[$tagName] = xmlnode2array($child);
                                        }
                                } else {
                                        if ($content = xmlnode2array($child))
                                                $out = $content;
                                }
                        }
                }

        } else {
                // this is a CONTENT NODE //
                $out = trim($node->content);
                if (!$out) return false;
        }
        return $out;
}
//*******************************************************

This worked on my webhost perfectly! problem is i then tried it on my local machine and i get this error!
Fatal error: Call to undefined function domxml_open_mem() in C:\apachefriends\xampp\xampp\htdocs\vin\vindecoding.php

So i checked to see if i had domxml installed.. the dll php_domxml.dll

is in the extensions folder.. i then uncommented out the line
extension=php_domxml.dll

still didn't work.. i changed the comment in both the php.ini and php5.ini  

locally i am using php5 which is a Apachie Friends xamp install running php 5.0.3 on a windows machine.  My webserver is 4.3.7 running on a *nix machine
[+][-]02/23/05 06:39 PM, ID: 13389283Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/24/05 02:54 AM, ID: 13391247Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/24/05 03:37 AM, ID: 13391476Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: PHP Scripting Language, Extensible HTML (XHTML)
Tags: xampp, undefined, call
Sign Up Now!
Solution Provided By: Squinky
Participating Experts: 2
Solution Grade: A
 
[+][-]02/24/05 08:12 AM, ID: 13393952Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/24/05 08:16 AM, ID: 13393995Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/24/05 08:21 AM, ID: 13394059Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81