SimpleXMLElement from curl response - problem with @attributesDeleting an element from an array in PHPHow to know if an object has an attribute in PythonHow do I get a YouTube video thumbnail from the YouTube API?How can I create an object and add attributes to it?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Reference - What does this error mean in PHP?Can't create SimpleXMLElement object from SOAP response of PHP Soap Client objectsimplexml_load_string not displaying all contents inside of its element (PHP and XML)Convert XML to array using simplexml_load_string with attribute contain slash

Series that evaluates to different values upon changing order of summation

Passport stamps art, can it be done?

How to efficiently lower your karma

How can I avoid subordinates and coworkers leaving work until the last minute, then having no time for revisions?

Why was wildfire not used during the Battle of Winterfell?

Further factorisation of a difference of cubes?

How to select certain lines (n, n+4, n+8, n+12...) from the file?

If a character drops a magic item that turns on/off, does that item turn off when they drop it?

date -d 'previous Monday" to display the preceding Monday

Has there been evidence of any other gods?

Removing all characters except digits from clipboard

Is there any evidence to support the claim that the United States was "suckered into WW1" by Zionists, made by Benjamin Freedman in his 1961 speech

What was the notion of limit that Newton used?

What do "KAL." and "A.S." stand for in this inscription?

How to get a ellipse shaped node in Tikz Network?

Why do unstable nuclei form?

How do I compare the result of "1d20+x, with advantage" to "1d20+y, without advantage", assuming x < y?

Examples where existence is harder than evaluation

Should I pay on student loans in deferment or continue to snowball other debts?

Is every story set in the future "science fiction"?

When do you stop "pushing" a book?

How is CoreiX like Corei5, i7 is related to Haswell, Ivy Bridge?

Why can't I prove summation identities without guessing?

How to slow yourself down (for playing nice with others)



SimpleXMLElement from curl response - problem with @attributes


Deleting an element from an array in PHPHow to know if an object has an attribute in PythonHow do I get a YouTube video thumbnail from the YouTube API?How can I create an object and add attributes to it?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Reference - What does this error mean in PHP?Can't create SimpleXMLElement object from SOAP response of PHP Soap Client objectsimplexml_load_string not displaying all contents inside of its element (PHP and XML)Convert XML to array using simplexml_load_string with attribute contain slash






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















XML code from response:



<hints label="luggage">20</hints>
<hints label="handluggage">5</hints>
<hints label="landing"></hints>


After this function with response:



$arrayResponse = json_decode(json_encode((array)simplexml_load_string($response)), true);


I have this:



"hints" => [
0 => "20",
1 => "5",
2 => [
@attributes = [
label => "landing"
]
]
]


Keys "luggage" and "handluggage" does not exists.



How to get the KEYS with values from XML?
Example:



[
"luggage" => 20,
"handluggage" => 5,
"landing" => null
]









share|improve this question




























    0















    XML code from response:



    <hints label="luggage">20</hints>
    <hints label="handluggage">5</hints>
    <hints label="landing"></hints>


    After this function with response:



    $arrayResponse = json_decode(json_encode((array)simplexml_load_string($response)), true);


    I have this:



    "hints" => [
    0 => "20",
    1 => "5",
    2 => [
    @attributes = [
    label => "landing"
    ]
    ]
    ]


    Keys "luggage" and "handluggage" does not exists.



    How to get the KEYS with values from XML?
    Example:



    [
    "luggage" => 20,
    "handluggage" => 5,
    "landing" => null
    ]









    share|improve this question
























      0












      0








      0








      XML code from response:



      <hints label="luggage">20</hints>
      <hints label="handluggage">5</hints>
      <hints label="landing"></hints>


      After this function with response:



      $arrayResponse = json_decode(json_encode((array)simplexml_load_string($response)), true);


      I have this:



      "hints" => [
      0 => "20",
      1 => "5",
      2 => [
      @attributes = [
      label => "landing"
      ]
      ]
      ]


      Keys "luggage" and "handluggage" does not exists.



      How to get the KEYS with values from XML?
      Example:



      [
      "luggage" => 20,
      "handluggage" => 5,
      "landing" => null
      ]









      share|improve this question














      XML code from response:



      <hints label="luggage">20</hints>
      <hints label="handluggage">5</hints>
      <hints label="landing"></hints>


      After this function with response:



      $arrayResponse = json_decode(json_encode((array)simplexml_load_string($response)), true);


      I have this:



      "hints" => [
      0 => "20",
      1 => "5",
      2 => [
      @attributes = [
      label => "landing"
      ]
      ]
      ]


      Keys "luggage" and "handluggage" does not exists.



      How to get the KEYS with values from XML?
      Example:



      [
      "luggage" => 20,
      "handluggage" => 5,
      "landing" => null
      ]






      php attributes simplexml simplexml-load-string






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 23 at 9:54









      G. ŚwidnickiG. Świdnicki

      1




      1






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Solution without using json:



          $response = '<root><hints label="luggage">20</hints><hints label="handluggage">5</hints><hints label="landing"></hints></root>';
          $a = [];
          foreach (simplexml_load_string($response)->hints as $hint)
          $value = (string)$hint;
          $a[(string)$hint['label']] = $value ?: null;

          print_r($a);





          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55312517%2fsimplexmlelement-from-curl-response-problem-with-attributes%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Solution without using json:



            $response = '<root><hints label="luggage">20</hints><hints label="handluggage">5</hints><hints label="landing"></hints></root>';
            $a = [];
            foreach (simplexml_load_string($response)->hints as $hint)
            $value = (string)$hint;
            $a[(string)$hint['label']] = $value ?: null;

            print_r($a);





            share|improve this answer



























              1














              Solution without using json:



              $response = '<root><hints label="luggage">20</hints><hints label="handluggage">5</hints><hints label="landing"></hints></root>';
              $a = [];
              foreach (simplexml_load_string($response)->hints as $hint)
              $value = (string)$hint;
              $a[(string)$hint['label']] = $value ?: null;

              print_r($a);





              share|improve this answer

























                1












                1








                1







                Solution without using json:



                $response = '<root><hints label="luggage">20</hints><hints label="handluggage">5</hints><hints label="landing"></hints></root>';
                $a = [];
                foreach (simplexml_load_string($response)->hints as $hint)
                $value = (string)$hint;
                $a[(string)$hint['label']] = $value ?: null;

                print_r($a);





                share|improve this answer













                Solution without using json:



                $response = '<root><hints label="luggage">20</hints><hints label="handluggage">5</hints><hints label="landing"></hints></root>';
                $a = [];
                foreach (simplexml_load_string($response)->hints as $hint)
                $value = (string)$hint;
                $a[(string)$hint['label']] = $value ?: null;

                print_r($a);






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 23 at 10:13









                u_mulderu_mulder

                38.8k53148




                38.8k53148





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55312517%2fsimplexmlelement-from-curl-response-problem-with-attributes%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript