How to get the xml sub-parameters?
how to get all the results of category
and return a result $category
.. category = Test1, Test2
my xml
<xml>
<title>Test 123</title>
<categories>
<category>Test1</category>
<category>Test2</category>
</categories>
</xml>
my get code
$category = htmlspecialchars($item->categories->category, ENT_XML1 | ENT_QUOTES, 'UTF-8');
echo $category; //I want to return Test1, Test2