↧
Answer by Kevin for XML tag count in PHP
You can start using SimpleXML to parse the xml, and just use count():$xml = simplexml_load_file('path/to/xmlfile.xml');foreach($xml->video as $video) { $titles =...
View ArticleXML tag count in PHP
<videos><video><title1>Title1</title1><title2>Title2</title2><title3>Title3</title3><title4>Title4</title4><desc>...
View Article
More Pages to Explore .....