Lines Matching refs:xw
10 $xw = xmlwriter_open_memory($doc_dest);
11 xmlwriter_start_document($xw, '1.0', 'UTF-8');
12 xmlwriter_start_element($xw, "tag1");
15 $res = xmlwriter_start_attribute($xw, 'attr1');
16 xmlwriter_text($xw, "attr1_value");
17 xmlwriter_end_attribute($xw);
19 xmlwriter_write_attribute($xw, "att2", "att2_value");
20 xmlwriter_text($xw, "Test text for tag1");
21 $res = xmlwriter_start_element($xw, 'tag2');
26 xmlwriter_end_document($xw);
29 echo xmlwriter_flush($xw, true);