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 8207987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T09:11:04+00:00 2026-06-07T09:11:04+00:00

Is there any more elegant way to escape SimpleXML attributes to an array? $result

  • 0

Is there any more elegant way to escape SimpleXML attributes to an array?

$result = $xml->xpath( $xpath );
$element = $result[ 0 ];
$attributes = (array) $element->attributes();
$attributes = $attributes[ '@attributes' ];

I don’t really want to have to loop through it just to extract the key/value pair. All I need is to get it into an array and then pass it on. I would have thought attributes() would have done it by default, or at least given the option. But I couldn’t even find the above solution anywhere, I had to figure that out on my own. Am I over complicating this or something?

Edit:

I’m still using the above script until I know for sure whether accessing the @attributes array is safe or not.

  • 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-06-07T09:11:07+00:00Added an answer on June 7, 2026 at 9:11 am

    Don’t directly read the '@attributes' property, that’s for internal use. Anyway, attributes() can already be used as an array without needing to “convert” to a real array.

    For example:

    <?php
    $xml = '<xml><test><a a="b" r="x" q="v" /></test><b/></xml>';
    $x = new SimpleXMLElement($xml);
    
    $attr = $x->test[0]->a[0]->attributes();
    echo $attr['a']; // "b"
    

    If you want it to be a “true” array, you’re gonna have to loop:

    $attrArray = array();
    $attr = $x->test[0]->a[0]->attributes();
    
    foreach($attr as $key=>$val){
        $attrArray[(string)$key] = (string)$val;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any more elegant way to do the following? Basically I need an
Is there any way to connect more then one PPC to ActiveSync in one
Is there any possible way to apply more than CSS to a control through
Is there any other way to write javascript:false that is more pleasant? I'm building
Is there any smart way to write a list comprehension over more than one
Is there any elegant way of applying a certain style to all <input type=text>
Is there any elegant way of splitting a list/dict into two lists/dicts in python,
Does any have a more elegant way of doing this? [Flags] public enum SomeFlaggedEnum
Is there any elegant way to Cut off support for older iOS operating system
Is there a more elegant way of doing this sort of thing? I have

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.