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;
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
add a comment |
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
add a comment |
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
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
php attributes simplexml simplexml-load-string
asked Mar 23 at 9:54
G. ŚwidnickiG. Świdnicki
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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);
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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);
add a comment |
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);
add a comment |
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);
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);
answered Mar 23 at 10:13
u_mulderu_mulder
38.8k53148
38.8k53148
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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