You are here

public function XML2Array::tagClosed in Opigno 7

File

modules/scorm/includes/XML2Array.php, line 52
Defines the XML2Array class, for easy XML manipulation. Based on http://ch2.php.net/xml_parse#52567.

Class

XML2Array
@file Defines the XML2Array class, for easy XML manipulation. Based on http://ch2.php.net/xml_parse#52567.

Code

public function tagClosed($parser, $name) {
  $this->output[count($this->output) - 2]['children'][] = $this->output[count($this->output) - 1];
  array_pop($this->output);
}