fluidxml icon indicating copy to clipboard operation
fluidxml copied to clipboard

FluidXML, the PHP library for manipulating XML with a concise and fluent API.

Results 12 fluidxml issues
Sort by recently updated
recently updated
newest added

I found some areas where PHP deprecation notices were being thrown due to the new stricter "Passing null to non-nullable internal function parameters is deprecated." change (https://www.php.net/releases/8.1/en.php) while using the...

I'm trying to load an XML from a URL however it's not loading correctly using fluidxml URL is `https://www.yourstaging.eu/products.xml` ```php $doc = \FluidXml\FluidXml::load('https://www.yourstaging.eu/products.xml'); $productsNode = $doc->query("//products"); $productNodes = $doc->query("//products/product"); $loadedData...

request_for_improvement

I'm getting an error when reading an fcpxml file. A short example is below, but it's not specific to this file, but rather the format (Apple's Final Cut Pro xml)...

request_for_bugfix

Hello. I got "Invalid Character Error" exception when i had tried to make XML document from db data because one of records contained "

request_for_improvement

Added a check that $options['standalone'] = bool generates standalone declaration. `new FluidXML('books', ['standalone' => true]);` produces ``

This PR is in relation to a suggestion raised in issue #28. It allows you to export the XML in either an array or object. It introduces two new public...

It would be nice if I could specify the data type when using the concise syntax. For example: ``` $book->add([ 'title' => 'The Theory Of Everything', 'author' => 'S. Hawking',...

request_for_improvement

In short: this PR proposes a way to monetize open-source development of your project. The idea is similar to how free-to-play works in gamedev industry: "You are free to wait...

It would be nice to be able to export to arrays or stdClass Objects eg. $xml = 'create', 'type' => 'Herbivore', 'attribute' => Array( 'legs' => 4, 'head' => 1...

request_for_improvement

Would be fantastic to see support for the **LIBXML_NOEMPTYTAG** flag for the _save()_ and _xml()_ export methods. Really missing this one ;-)

request_for_improvement