Skip to content

Commit

Permalink
- fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejoye committed Aug 6, 2005
1 parent 97d493e commit b80eaf1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ext/xmlwriter/examples/xmlwriter_file.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlwriter_set_indent($xw, 1);
$res = xmlwriter_set_indent_string($xw, ' ');

xmlwriter_start_document($xw, '1.0', 'utf8');
xmlwriter_start_document($xw, '1.0', 'UTF-8');

// A first element
xmlwriter_start_element($xw, 'tag1');
Expand Down
2 changes: 1 addition & 1 deletion ext/xmlwriter/examples/xmlwriter_mem.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlwriter_set_indent($xw, 1);
$res = xmlwriter_set_indent_string($xw, ' ');

xmlwriter_start_document($xw, '1.0', 'utf8');
xmlwriter_start_document($xw, '1.0', 'UTF-8');

// A first element
xmlwriter_start_element($xw, 'tag1');
Expand Down
2 changes: 1 addition & 1 deletion ext/xmlwriter/examples/xmlwriter_mem_ns.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlwriter_set_indent($xw, 1);
$res = xmlwriter_set_indent_string($xw, ' ');

xmlwriter_start_document($xw, '1.0', 'utf8');
xmlwriter_start_document($xw, '1.0', 'UTF-8');
// A first element
xmlwriter_start_element_ns($xw,'prefix', 'books', 'uri');
xmlwriter_start_attribute($xw, 'isbn');
Expand Down

0 comments on commit b80eaf1

Please sign in to comment.