I want to insert childelement values as json from xml in database.
My xml
<Listings>
<Listing>
<ParentElement>
ParentValue
</ParentElement>
<ParentElement>
<ChildElement>
ChildValue
</ChildElement>
<ChildElement>
ChildValue
</ChildElement>
</ParentElement>
</Listing>
</Listings>
I can get the values in doing loop by
foreach($xml->xpath('//ChildElement/*') as $child) {
echo $child;
}
How can I insert the values of child in my database as json?