2017 © Pedro Peláez
 

library pretty-xml

Library for pretty-printing XML

image

shanethehat/pretty-xml

Library for pretty-printing XML

  • Wednesday, August 19, 2015
  • by shanethehat
  • Repository
  • 2 Watchers
  • 10 Stars
  • 99,219 Installations
  • PHP
  • 5 Dependents
  • 0 Suggesters
  • 4 Forks
  • 2 Open issues
  • 7 Versions
  • 12 % Grown

The README.md

pretty-xml

A tiny library for pretty printing XML, inspired purely from DomDocument's lack of ability to configure indent distance., (*1)

Latest Stable Version Total Downloads, (*2)

Usage

Installation

The recommended way to install the extension is using [Composer][1]., (*3)

Run the following command:, (*4)

composer require simonschaufi/pretty-xml

How to use

Prettify

To use, give it a badly indented (but well-formed and valid) XML string:, (*5)

use PrettyXml\Formatter;

$formatter = new Formatter();
echo "

" . htmlspecialchars($formatter->format('Baz')) . "
";

You can also change the size of the indent:, (*6)

$formatter->setIndentSize(2);

And you can change the indent character:, (*7)

$formatter->setIndentCharacter("\t");

Minify

use PrettyXml\Formatter;

$formatter = new Formatter();
echo htmlspecialchars($formatter->minify(<<<XML
<?xml version="1.0" encoding="UTF-8"?>
<foo>
    <bar>Baz</bar>
</foo>
XML));

// keep comments
echo htmlspecialchars($formatter->minify(<<<XML
<?xml version="1.0" encoding="UTF-8"?>
<foo>
    <!-- comment -->
    <bar>Baz</bar>
</foo>
XML, true));

Thanks

Thanks to vkBeautify for their algorithm., (*8)

The Versions

19/08 2015

dev-master

9999999-dev

Library for pretty-printing XML

  Sources   Download

MIT

The Development Requires

xml pretty

10/08 2015

1.0.2

1.0.2.0

Library for pretty-printing XML

  Sources   Download

MIT

The Development Requires

xml pretty

10/09 2014

1.0.1

1.0.1.0

Library for pretty-printing XML

  Sources   Download

MIT

The Development Requires

xml pretty

05/08 2014

1.0.0

1.0.0.0

Library for pretty-printing XML

  Sources   Download

MIT

The Development Requires

xml pretty

18/07 2014

0.2.1

0.2.1.0

Library for pretty-printing XML

  Sources   Download

MIT

The Development Requires

xml pretty

18/07 2014

0.2.0

0.2.0.0

Library for pretty-printing XML

  Sources   Download

MIT

The Development Requires

xml pretty

18/07 2014

0.1.0

0.1.0.0

Library for pretty-printing XML

  Sources   Download

MIT

The Development Requires

xml pretty