Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 620257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:44:37+00:00 2026-05-13T18:44:37+00:00

I’m not really a web developer and I’m trying to make a web interface

  • 0

I’m not really a web developer and I’m trying to make a web interface for parsing and displaying experimental data, so I apologize if this is a ridiculously easy solution. I’m trying to take data from an XML element and convert it into a PHP numerical array that I can plot using GD. So far, I have the XML creation, XML loading, and GD plotting finished (I think), but what I need is the key to converting the data into a PHP array to finish.

I have an xml file with numeric data stored like this:

<?xml version="1.0" encoding="utf-8" ?>
<NotData>
    <Data>0 1 2 3 4 5 6 7 8 9</Data>
</NotData>

I’m using simplexml_load_file to read in the data file. Then I pull out the data like this:

$myData=$xmldata->NotData[0]->Data;

Now I have an object with the data inside, but I’m not sure how to get this out into a numeric array.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:44:37+00:00Added an answer on May 13, 2026 at 6:44 pm

    Considering you have that string, you first have to load it using SimpleXML :

    $str = <<<XML
    <?xml version="1.0" encoding="utf-8" ?>
    <NotData>
        <Data>0 1 2 3 4 5 6 7 8 9</Data>
    </NotData>
    XML;
    $data = simplexml_load_string($str);
    

    I used simplexml_load_string because it was simpler for my test ; of course, you can still use simplexml_load_file, as you are already doing.

    Then, to get the field containing the numbers into a variable :

    $numbers_string = (string)$data->Data;
    var_dump($numbers_string);
    

    Which gets you :

    string '0 1 2 3 4 5 6 7 8 9' (length=19)
    

    And, then, you can use the explode function to… well, explode… the string into an array, using a space as a separator :

    $numbers_array = explode(' ', $numbers_string);
    var_dump($numbers_array);
    

    And you finally get this array :

    array
      0 => string '0' (length=1)
      1 => string '1' (length=1)
      2 => string '2' (length=1)
      3 => string '3' (length=1)
      4 => string '4' (length=1)
      5 => string '5' (length=1)
      6 => string '6' (length=1)
      7 => string '7' (length=1)
      8 => string '8' (length=1)
      9 => string '9' (length=1)
    

    Which seems to be what you were waiting for 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 449k
  • Answers 449k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I am afraid it is not possible. Whenever you are… May 15, 2026 at 8:14 pm
  • Editorial Team
    Editorial Team added an answer If I understand you correctly, you're looking for data on… May 15, 2026 at 8:14 pm
  • Editorial Team
    Editorial Team added an answer I always use this CSV library for reading CSV files… May 15, 2026 at 8:14 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.