As of PHP 5.2.0, the JSON extension is bundled and compiled into PHP by default.
<?php
var_dump(PHP_VERSION);
var_dump(LIBXML_VERSION);
$string = <<<XML
<a>
<b>
<c>текст</c>
<c>штучка</c>
</b>
<d>
<c>код</c>
</d>
</a>
XML;
$xml = new SimpleXMLElement($string);
var_dump($xml->asXML());
string(5) "7.2.0"
int(20907)
string(181) "<?xml version="1.0"?>
<a>
<b>
<c>текст</c>
<c>штучка</c>
</b>
<d>
<c>код</c>
</d>
</a>
"
php > var_dump((floatval(0.29) - intval(0.29)) * 100);
float(29)
php > var_dump(intval((floatval(0.29) - intval(0.29)) * 100));
int(28)