php-fast-xml-parser icon indicating copy to clipboard operation
php-fast-xml-parser copied to clipboard

Fast SAX XML parser for PHP.

Results 4 php-fast-xml-parser issues
Sort by recently updated
recently updated
newest added

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...