Git Product home page Git Product logo

Comments (3)

veewee avatar veewee commented on June 15, 2024

Hello there,

I haven't really experimented with UTF16 XML yet tbh.
But the general approach would be to:

use VeeWee\Xml\Dom\Document;
use function VeeWee\Xml\Dom\Configurator\loader;
use function VeeWee\Xml\Dom\Loader\xml_string_loader;

$doc = Document::configure(
    utf16(),
    loader(xml_string_loader($utf16String))
);

This package currently does not ship with a utf16 configurator, but you can take a look at the UTF8 one to base it upon:

/**
 * @return Closure(DOMDocument): DOMDocument
 */
function utf16(): Closure
{
    return static function (DOMDocument $document): DOMDocument {
        $document->encoding = 'UTF-16';

        return $document;
    };
}

If you want to use xml_decode, you probably have to build the document first and use element_decode instead. You can pass in configurators, but you'll need to set the encoding before loading the xml string.

from xml.

bendavies avatar bendavies commented on June 15, 2024

Hi, thanks for the reply.

I actually tried exactly, that, but still got the error that i posted in the OP!

from xml.

bendavies avatar bendavies commented on June 15, 2024

ok, looked at this again.
this does work if i run the string though

\Psl\Str\convert_encoding($xml, \Psl\Str\Encoding::UTF_8, \Psl\Str\Encoding::UTF_16),

I'll check, but i think this is an issue with the actual soap webservice returning utf-8 content instead of utf-16, or it's being converted automatically somewhere my end...

Thanks!

from xml.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.