You are here

protected function EasyRdf_Parser_RdfXml::popS in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/RdfXml.php \EasyRdf_Parser_RdfXml::popS()

@ignore

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

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/RdfXml.php, line 106

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;
}