Zetruger
ivan.chistyakov.name
Warning: It is not yet possible to assign complex types to properties in
это что ограничение PHP?
из-за того что SimpleXMLElement в откомпелированном виде лежит в DLL?
PHP:
<?php
$xmldata = <<<XML
<lst>
<item>1</item>
<item>2</item>
<item>3</item>
</lst>
XML;
class myObj {
}
class myXML extends SimpleXMLElement {
public $obj;
}
$xml = simplexml_load_string($xmldata, 'myXML');
$xml->obj = new myObj;
// Warning: It is not yet possible to assign complex types to properties in C:\wamp\www\2.php on line 20
?>
из-за того что SimpleXMLElement в откомпелированном виде лежит в DLL?