Jump to content
  • 0

DOM XML кодировка windows-1251


Bolmazov
 Share

Question

Вопрос кажется простой а заgoogleить ответ не получилось.

Строю XML.

$dom = new DOMDocument('1.0', 'windows-1251');

Беру из БД данные (видимо в windows-1251) и вставляю в XML.

Далее fwrite($fh, $dom->saveXML()); не проходит.

Ошибка Warning: DOMDocument::saveXML() [function.DOMDocument-saveXML]: output conversion failed due to conv error

Вопрос: как сваять xml-файл в 'windows-1251' кодировке.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
Вопрос кажется простой а заgoogleить ответ не получилось.

Строю XML.

$dom = new DOMDocument('1.0', 'windows-1251');

Беру из БД данные (видимо в windows-1251) и вставляю в XML.

Далее fwrite($fh, $dom->saveXML()); не проходит.

Ошибка Warning: DOMDocument::saveXML() [function.DOMDocument-saveXML]: output conversion failed due to conv error

Вопрос: как сваять xml-файл в 'windows-1251' кодировке.

потому что курим маны. Ну тыб хоть не тупил :)

$dom->saveXML('путь к файлу');

или

$dom->save('путь к файлу');

второе работает точно, первое вроде должно

уже стыдно?)

Link to comment
Share on other sites

  • 0

Еще нет, моя совесть еще и не такие вопросы выдерживала. )

$dom->saveXML('путь к файлу'); не то, т.к. я именно в скрипте строю xml

(пример: $auto_catalog = $dom->appendChild($dom->createElement('auto-catalog')); и т.д.)

Проблема в кодировке

С $dom = new DOMDocument('1.0', 'UTF-8'); всё работает.

А $dom = new DOMDocument('1.0', 'windows-1251'); так пропадает кириллица.

Link to comment
Share on other sites

  • 0
Еще нет, моя совесть еще и не такие вопросы выдерживала. )

$dom->saveXML('путь к файлу'); не то, т.к. я именно в скрипте строю xml

(пример: $auto_catalog = $dom->appendChild($dom->createElement('auto-catalog')); и т.д.)

Проблема в кодировке

С $dom = new DOMDocument('1.0', 'UTF-8'); всё работает.

А $dom = new DOMDocument('1.0', 'windows-1251'); так пропадает кириллица.

во-первых - с кодировкой - хрень какая-то попробуй не windows-1251 а cp1251;

ну блин а на тему того что в скрипте - забей все в одну блин переменную и потом saveXML... всего делов-то.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy