1--TEST--
2XSLTProcessor: new instance without constructor
3--EXTENSIONS--
4xsl
5--FILE--
6<?php
7
8$rc = new ReflectionClass('XSLTProcessor');
9$processor = $rc->newInstanceWithoutConstructor();
10var_dump($processor);
11
12?>
13--EXPECTF--
14object(XSLTProcessor)#2 (4) {
15  ["doXInclude"]=>
16  bool(false)
17  ["cloneDocument"]=>
18  bool(false)
19  ["maxTemplateDepth"]=>
20  int(%d)
21  ["maxTemplateVars"]=>
22  int(%d)
23}
24