XMLWriter

Коментарии

Автор:
important: XMLWriter expects UTF-8 data from you. It can output xml in various encodings, but input should be strictly utf-8!
2008-06-09 06:47:09
http://php5.kiev.ua/manual/ru/book.xmlwriter.html
Автор:
The single quote predefined entity is not escaped.
The other predefined entities are but not the single quote, so you will have to do it yourself.

That's what you would expect:

Ampersand     &     &
Single Quote     '     '
Double Quote     "     "
Greater Than     >     >
Less Than     <     &lt;

That's what you get with \XmlWriter:

Ampersand     &     &amp;
Single Quote     '     '
Double Quote     "     &quot;
Greater Than     >     &gt;
Less Than     <     &lt;
2015-10-08 23:35:45
http://php5.kiev.ua/manual/ru/book.xmlwriter.html

    Поддержать сайт на родительском проекте КГБ