protected function EasyRdf_Parser_RdfXml::popS

@ignore

2 calls to EasyRdf_Parser_RdfXml::popS()
EasyRdf_Parser_RdfXml::endState2 in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/RdfXml.php
@ignore
EasyRdf_Parser_RdfXml::endState4 in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/RdfXml.php
@ignore

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/RdfXml.php, line 107

Class

EasyRdf_Parser_RdfXml
A pure-php class to parse RDF/XML.

Code

protected function popS() {
  $r = array();
  $this->sCount--;
  for ($i = 0, $iMax = $this->sCount; $i < $iMax; $i++) {
    $r[$i] = $this->sStack[$i];
  }
  $this->sStack = $r;
}