3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<XML <?xml version="1.0" encoding="utf-8"?> <createTransactionResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd">   <refId>123456</refId>   <messages>     <resultCode>Ok</resultCode>     <message>       <code>I00001</code>       <text>Successful.</text>     </message>   </messages>   <transactionResponse>     <responseCode>1</responseCode>     <authCode>UGELQC</authCode>     <avsResultCode>E</avsResultCode>     <cavvResultCode />     <transId>2148061808</transId>     <refTransID />     <transHash>0B428D8A928AAC61121AF2F6EAC5FF3F</transHash>     <testRequest>0</testRequest>     <accountNumber>XXXX0015</accountNumber>     <accountType>MasterCard</accountType>     <message>       <code>1</code>       <description>This transaction has been approved.</description>     </message>     <userFields>       <userField>         <name>MerchantDefinedFieldName1</name>         <value>MerchantDefinedFieldValue1</value>       </userField>       <userField>         <name>favorite_color</name>         <value>lavender</value>       </userField>     </userFields>   </transactionResponse> </createTransactionResponse> XML; $dom = new DOMDocument(); libxml_use_internal_errors(true); $dom->loadXML($xml); libxml_clear_errors(); libxml_use_internal_errors(false); $query = '/m:createTransactionResponse/m:messages/m:resultCode[1]/text()'; $xpath = new DOMXpath($dom); $xpath->registerNamespace('m', 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'); var_dump($xpath->query($query)->item(0));
Output for git.master, git.master_jit, rfc.property-hooks
object(DOMText)#3 (21) { ["wholeText"]=> string(2) "Ok" ["data"]=> string(2) "Ok" ["length"]=> int(2) ["previousElementSibling"]=> NULL ["nextElementSibling"]=> NULL ["nodeName"]=> string(5) "#text" ["nodeValue"]=> string(2) "Ok" ["nodeType"]=> int(3) ["parentNode"]=> string(22) "(object value omitted)" ["childNodes"]=> string(22) "(object value omitted)" ["firstChild"]=> NULL ["lastChild"]=> NULL ["previousSibling"]=> NULL ["nextSibling"]=> NULL ["attributes"]=> NULL ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> NULL ["baseURI"]=> string(1) "/" ["textContent"]=> string(2) "Ok" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
38.19 ms | 402 KiB | 8 Q