function XMLSchema::schemaCharacterData in Salesforce Suite 5.2
Same name in this branch
- 5.2 includes/nusoap.php \XMLSchema::schemaCharacterData()
- 5.2 includes/nusoap.orig.php \XMLSchema::schemaCharacterData()
Same name and namespace in other branches
- 5 includes/nusoap.php \XMLSchema::schemaCharacterData()
- 5 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.php, line 1481
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;
}