xml.php in Devel 8
Same filename and directory in other branches
File
kint/kint/parsers/custom/xml.phpView source
<?php
class Kint_Parsers_Xml extends kintParser {
protected function _parse(&$variable) {
try {
if (is_string($variable) && substr($variable, 0, 5) === '<?xml') {
$e = libxml_use_internal_errors(true);
$xml = simplexml_load_string($variable);
libxml_use_internal_errors($e);
if (empty($xml)) {
return false;
}
}
else {
return false;
}
} catch (Exception $e) {
return false;
}
$this->value = kintParser::factory($xml)->extendedValue;
$this->type = 'XML';
}
}
Classes
Name | Description |
---|---|
Kint_Parsers_Xml |