--TEST-- Test for bug #1272: property_get doesn't return attributes for SimpleXMLElement --SKIPIF-- <?php require __DIR__ . '/../utils.inc'; check_reqs('ext simplexml; dbgp'); ?> --FILE-- <?php require 'dbgp/dbgpclient.php'; $filename = dirname(__FILE__) . '/bug01272.inc'; $commands = array( 'feature_set -n max_depth -v 3', 'step_into', 'breakpoint_set -t line -n 7', 'run', 'property_get -n $e', 'property_get -n $e->@attributes', 'property_get -n $e->@attributes["att1"]', 'property_get -n $e->b[0]->@attributes', 'property_get -n $e->b[1]->@attributes["attb"]', ); dbgpRunFile( $filename, $commands ); ?> --EXPECT-- <?xml version="1.0" encoding="iso-8859-1"?> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" fileuri="file://bug01272.inc" language="PHP" xdebug:language_version="" protocol_version="1.0" appid=""><engine version=""><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[https://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2099 by Derick Rethans]]></copyright></init> -> feature_set -i 1 -n max_depth -v 3 <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="1" feature="max_depth" success="1"></response> -> step_into -i 2 <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="2" status="break" reason="ok"><xdebug:message filename="file://bug01272.inc" lineno="3"></xdebug:message></response> -> breakpoint_set -i 3 -t line -n 7 <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="3" id=""></response> -> run -i 4 <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="run" transaction_id="4" status="break" reason="ok"><xdebug:message filename="file://bug01272.inc" lineno="7"></xdebug:message></response> -> property_get -i 5 -n $e <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="property_get" transaction_id="5"><property name="$e" fullname="$e" type="object" classname="SimpleXMLElement" children="1" numchildren="2" page="0" pagesize="32"><property name="@attributes" fullname="$e->@attributes" facet="public" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="att1" fullname="$e->@attributes["att1"]" type="string" size="5" encoding="base64"><![CDATA[YXR0LWE=]]></property></property><property name="b" fullname="$e->b" facet="public" type="array" children="1" numchildren="2" page="0" pagesize="32"><property name="0" fullname="$e->b[0]" type="object" classname="SimpleXMLElement" children="1" numchildren="1" page="0" pagesize="32"><property name="@attributes" fullname="$e->b[0]->@attributes" facet="public" type="array" children="1" numchildren="1"></property></property><property name="1" fullname="$e->b[1]" type="object" classname="SimpleXMLElement" children="1" numchildren="1" page="0" pagesize="32"><property name="@attributes" fullname="$e->b[1]->@attributes" facet="public" type="array" children="1" numchildren="1"></property></property></property></property></response> -> property_get -i 6 -n $e->@attributes <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="property_get" transaction_id="6"><property name="$e->@attributes" fullname="$e->@attributes" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="att1" fullname="$e->@attributes["att1"]" type="string" size="5" encoding="base64"><![CDATA[YXR0LWE=]]></property></property></response> -> property_get -i 7 -n $e->@attributes["att1"] <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="property_get" transaction_id="7"><property name="$e->@attributes["att1"]" fullname="$e->@attributes["att1"]" type="string" size="5" encoding="base64"><![CDATA[YXR0LWE=]]></property></response> -> property_get -i 8 -n $e->b[0]->@attributes <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="property_get" transaction_id="8"><property name="$e->b[0]->@attributes" fullname="$e->b[0]->@attributes" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="attb" fullname="$e->b[0]->@attributes["attb"]" type="string" size="6" encoding="base64"><![CDATA[YXR0Yi0x]]></property></property></response> -> property_get -i 9 -n $e->b[1]->@attributes["attb"] <?xml version="1.0" encoding="iso-8859-1"?> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="property_get" transaction_id="9"><property name="$e->b[1]->@attributes["attb"]" fullname="$e->b[1]->@attributes["attb"]" type="string" size="6" encoding="base64"><![CDATA[YXR0Yi0y]]></property></response>