php-fast-xml-parser
php-fast-xml-parser copied to clipboard
Fast SAX XML parser for PHP.
Hello, I got problem with elements which are nested and have the same name. For example on given XML: ` Basic item 10 Black White ` I had set up...
ref https://github.com/alex-oleshkevich/php-fast-xml-parser/issues/9
first off, utf8_decode() is deprecated as of PHP8.2, and you should use ``` mb_convert_encoding($str, 'utf-8', 'ISO-8859-1') ``` instead, second, utf8_decode converts data from ISO-8859-1 to UTF-8, which means that if...