You are here

function XMLSchema::schemaCharacterData in Salesforce Suite 5

Same name in this branch
  1. 5 includes/nusoap.php \XMLSchema::schemaCharacterData()
  2. 5 includes/nusoap.orig.php \XMLSchema::schemaCharacterData()
Same name and namespace in other branches
  1. 5.2 includes/nusoap.php \XMLSchema::schemaCharacterData()
  2. 5.2 includes/nusoap.orig.php \XMLSchema::schemaCharacterData()

* element content handler * *

Parameters

string $parser XML parser object: * @param string $data element content * @access private

File

includes/nusoap.orig.php, line 1476

Class

XMLSchema
parses an XML Schema, allows access to it's data, other utility methods no validation... yet. very experimental and limited. As is discussed on XML-DEV, I'm one of the people that just doesn't have time to read the spec(s) thoroughly,…

Code

function schemaCharacterData($parser, $data) {
  $pos = $this->depth_array[$this->depth - 1];
  $this->message[$pos]['cdata'] .= $data;
}