Searched refs:atts (Results 1 – 3 of 3) sorted by relevance
17 $atts = $x->xpath("/xml/data/@a:label");18 echo $atts[0] . "\n";19 $atts = $x->xpath("/xml/a:data");20 echo $atts[0]->attributes() . "\n";21 $atts = $x->xpath("/xml/a:data/@a:label");22 echo $atts[0] . "\n";23 $atts = $x->xpath("/xml/a:data/@label");24 echo $atts[0] . "\n";25 $atts = $x->xpath("/xml/data/@label");26 echo $atts[0] . "\n";
26 $atts = $sxe->attributes("urn::test");27 var_dump(isset($atts[0]));28 unset($atts[0]);29 var_dump(isset($atts[0]));30 var_dump(isset($atts[TRUE]));
753 if (atts) for (i=0; atts[i]; i++) { in php_wddx_push_element()781 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()782 if (!strcmp(atts[i], EL_CHAR_CODE) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()802 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()803 if (!strcmp(atts[i], EL_VALUE) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()850 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()851 if (!strcmp(atts[i], EL_NAME) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()865 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()866 if (!strcmp(atts[i], "fieldNames") && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()902 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()[all …]
Completed in 15 milliseconds