<?php
$note = new SimpleXMLElement('<Note></Note>');
$note->addChild("string0", 'just a string');
$note->addChild("string1", "abc\n\n\n");
$note->addChild("string2", "\tdef");
$note->addChild("string3", "\n\n\n");
$note->addChild("string4", "\t\n");
echo json_encode($note);
- Output for 5.4.0 - 5.4.27, 5.5.0 - 5.5.11, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
- {"string0":"just a string","string1":"abc\n\n\n","string2":"\tdef","string3":{},"string4":{}}
- Output for 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.5.27 - 5.5.38, 5.6.11 - 5.6.24, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33
- {"string0":"just a string","string1":"abc\n\n\n","string2":"\tdef","string3":{"0":"\n\n\n"},"string4":{"0":"\t\n"}}
- Output for 5.4.28 - 5.4.45, 5.5.12 - 5.5.26, 5.6.0 - 5.6.10
- {"string0":"just a string","string1":"abc\n\n\n","string2":"\tdef","string3":{},"string4":{"0":"\t\n"}}
- Output for 5.1.3 - 5.1.6
- Fatal error: Call to undefined function json_encode() in /in/kKfrL on line 8
Process exited with code 255. - Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.2
- Fatal error: Call to undefined method SimpleXMLElement::addChild() in /in/kKfrL on line 3
Process exited with code 255. - Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
- Fatal error: Cannot instantiate non-existent class: simplexmlelement in /in/kKfrL on line 2
Process exited with code 255. - Output for 4.3.0 - 4.3.1
- Fatal error: Cannot instantiate non-existent class: simplexmlelement in /in/kKfrL on line 2
preferences:
124.36 ms | 416 KiB | 6 Q