parrotcode: PHP xmlwriter Library | |
Contents | Language Implementations | Pipp |
php_xmlwriter.pir - PHP xmlwriter Library
bool xmlwriter_end_attribute(resource xmlwriter)
bool xmlwriter_end_cdata(resource xmlwriter)
bool xmlwriter_end_comment(resource xmlwriter)
bool xmlwriter_end_document(resource xmlwriter)
bool xmlwriter_end_dtd(resource xmlwriter)
bool xmlwriter_end_dtd_attlist(resource xmlwriter)
bool xmlwriter_end_dtd_element(resource xmlwriter)
bool xmlwriter_end_dtd_entity(resource xmlwriter)
bool xmlwriter_end_element(resource xmlwriter)
bool xmlwriter_end_pi(resource xmlwriter)
mixed xmlwriter_flush(resource xmlwriter [,bool empty])
bool xmlwriter_full_end_element(resource xmlwriter)
resource xmlwriter_open_memory()
resource xmlwriter_open_uri(resource xmlwriter, string source)
string xmlwriter_output_memory(resource xmlwriter [,bool flush])
bool xmlwriter_set_indent(resource xmlwriter, bool indent)
bool xmlwriter_set_indent_string(resource xmlwriter, string indentString)
bool xmlwriter_start_attribute(resource xmlwriter, string name)
bool xmlwriter_start_attribute_ns(resource xmlwriter, string prefix, string name, string uri)
bool xmlwriter_start_cdata(resource xmlwriter)
bool xmlwriter_start_comment(resource xmlwriter)
bool xmlwriter_start_document(resource xmlwriter, string version, string encoding, string standalone)
bool xmlwriter_start_dtd(resource xmlwriter, string name, string pubid, string sysid)
bool xmlwriter_start_dtd_attlist(resource xmlwriter, string name)
bool xmlwriter_start_dtd_element(resource xmlwriter, string name)
bool xmlwriter_start_dtd_entity(resource xmlwriter, string name, bool isparam)
bool xmlwriter_start_element(resource xmlwriter, string name)
bool xmlwriter_start_element_ns(resource xmlwriter, string prefix, string name, string uri)
bool xmlwriter_start_pi(resource xmlwriter, string target)
bool xmlwriter_text(resource xmlwriter, string content)
bool xmlwriter_write_attribute(resource xmlwriter, string name, string content)
bool xmlwriter_write_attribute_ns(resource xmlwriter, string prefix, string name, string uri, string content)
bool xmlwriter_write_cdata(resource xmlwriter, string content)
bool xmlwriter_write_comment(resource xmlwriter, string content)
bool xmlwriter_write_dtd(resource xmlwriter, string name, string pubid, string sysid, string subset)
bool xmlwriter_write_dtd_attlist(resource xmlwriter, string name, string content)
bool xmlwriter_write_dtd_element(resource xmlwriter, string name, string content)
bool xmlwriter_write_dtd_entity(resource xmlwriter, string name, string content [, int pe [, string pubid [, string sysid [, string ndataid]]]])
bool xmlwriter_write_element(resource xmlwriter, string name[, string content])
bool xmlwriter_write_element_ns(resource xmlwriter, string prefix, string name, string uri[, string content])
bool xmlwriter_write_pi(resource xmlwriter, string target, string content)
bool xmlwriter_write_raw(resource xmlwriter, string content)
|