Documentation
Function Reference
xml.php
xml::parse
Usage:
void object->parse()
Description:
After establishing a file pointer resource with setInputFile or setInputUrl, call parse() to begin XML parsing. The function reads in the file and executes PHP's XML parsing functions.
xml::setInputUrl
Usage:
void object->setInputUrl(string url)
Description:
setInputFile prepares a file pointer resource for url, which will be read when parse is called.
xml::setInputFile
Usage:
void object->setInputFile(string file path)
Description:
setInputFile prepares a file pointer resource for file path, which will be read when parse is called.