Home
last modified time | relevance | path

Searched refs:element (Results 76 – 100 of 1163) sorted by relevance

12345678910>>...47

/PHP-5.5/ext/simplexml/tests/
H A Dbug38354.phpt14 foreach ($xml->xpath("//*") as $element) {
15 var_dump($element->asXML());
/PHP-5.5/ext/json/tests/
H A Dpass001.1.phpt23 {\"object with 1 member\":[\"array with 1 element\"]},
111 {"object with 1 member":["array with 1 element"]},
156 "jsontext": "{\"object with 1 member\":[\"array with 1 element\"]}",
180 string(20) "array with 1 element"
333 string(49) "{"object with 1 member":["array with 1 element"]}"
361 string(20) "array with 1 element"
514 string(49) "{"object with 1 member":["array with 1 element"]}"
546 string(20) "array with 1 element"
699 string(49) "{"object with 1 member":["array with 1 element"]}"
727 string(20) "array with 1 element"
[all …]
H A Dpass001.1_64bit.phpt23 {\"object with 1 member\":[\"array with 1 element\"]},
111 {"object with 1 member":["array with 1 element"]},
156 "jsontext": "{\"object with 1 member\":[\"array with 1 element\"]}",
180 string(20) "array with 1 element"
333 string(49) "{"object with 1 member":["array with 1 element"]}"
361 string(20) "array with 1 element"
514 string(49) "{"object with 1 member":["array with 1 element"]}"
546 string(20) "array with 1 element"
699 string(49) "{"object with 1 member":["array with 1 element"]}"
727 string(20) "array with 1 element"
[all …]
/PHP-5.5/ext/spl/internal/
H A Drecursivetreeiterator.inc51 /** Prefix used right in front of the current element. */
68 /** @return string to place in front of current element
82 /** @return string presentation build for current element
89 /** @return string to place after the current element
96 /** @return the current element prefixed and postfixed
H A Drecursiveiteratoriterator.inc32 * to the next element. */
51 * element.
97 /** @return current element
105 /** Forward to next element
182 /** @return whether current sub iterators current element has children
230 /** Called when the next element is available
H A Dspldoublylinkedlist.inc48 /** @return the element popped from the end of the DLL.
59 /** @return the element shifted from the beginning of the DLL.
70 /** Pushes an element to the end of the DLL.
79 /** Adds an element to the beginning of the DLL.
88 /** @return the element at the beginning of the DLL.
95 /** @return the element at the end of the DLL.
175 /** Forward to next element
255 /** Unsets the element at a certain offset in the DLL
H A Drecursivecachingiterator.inc29 * - CALL_TOSTRING (whether to call __toString() for every element)
46 /** Forward to next element if necessary then an Iterator for the Children
80 /** @return whether the current element has children
/PHP-5.5/tests/classes/
H A Darray_access_008.phpt59 Notice: Indirect modification of overloaded element of Peoples has no effect in %sarray_access_008.…
62 Notice: Indirect modification of overloaded element of Peoples has no effect in %sarray_access_008.…
65 Notice: Indirect modification of overloaded element of Peoples has no effect in %sarray_access_008.…
/PHP-5.5/Zend/
H A Dzend_llist.h51 ZEND_API void zend_llist_add_element(zend_llist *l, void *element);
52 ZEND_API void zend_llist_prepend_element(zend_llist *l, void *element);
53 ZEND_API void zend_llist_del_element(zend_llist *l, void *element, int (*compare)(void *element1, v…
/PHP-5.5/ext/standard/tests/file/
H A D001.phpt53 echo "test.file lstat and stat differ at element $i\n";
60 if ($i != 6 && $i != 10 && $i != 11) echo "test.link lstat and stat differ at element $i\n";
128 test.link lstat and stat differ at element 1
129 test.link lstat and stat differ at element 2
130 test.link lstat and stat differ at element 7
131 test.link lstat and stat differ at element 8
132 test.link lstat and stat differ at element 9
/PHP-5.5/ext/xsl/tests/
H A Dbug54446_with_ini.phpt20 extension-element-prefixes="sax">
99 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
103 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
111 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
115 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
124 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
128 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
/PHP-5.5/ext/standard/tests/array/
H A D009.phpt6 mixed key ( array &$array ) -> returns the index element of the current array position
7 mixed current ( array &$array ) -> returns the current element in the array
9 mixed reset ( array &$array ) -> Reset the internal pointer to first element
13 array(0), // array with element as 0
14 array(1), // array with single element
41 var_dump( current($sub_array)); // current element
42 var_dump( key($sub_array) ); // key of the current element
43 var_dump( next($sub_array) ); // move to next element
61 var_dump( current($sub_array)); // current element
62 var_dump( key($sub_array) ); // key of the current element
[all …]
H A Darray_shift_variation4.phpt6 * Description: Pops an element off the beginning of the array
31 echo "---- Pop element from array within array:\n";
93 ---- Pop element from array within array:
H A Darray_push_error2.phpt28 Warning: array_push(): Cannot add element to the array as the next element is already occupied in %…
/PHP-5.5/ext/dom/tests/
H A Dbug42082.phpt15 $doc->loadXML("<element></element>");
/PHP-5.5/ext/pcre/tests/
H A Dpreg_split_basic.phpt12 …PREG_SPLIT_NO_EMPTY)); //all text before (parentheses) is put into first element, ( into second, "…
13 …ind NAME regardless of case in $string (can't split it so just returns how string as first element)
14 …g, -1, PREG_SPLIT_NO_EMPTY)); //every character (including whitespace) is put into an array element
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug30106.phpt2 Bug #30106 (SOAP cannot not parse 'ref' element. Causes Uncaught SoapFault exception)
11 "schema"=>"<xsd:schema><element name=\"test\" type=\"xsd:string\"/></xsd:schema>",
63 …y><ns1:getContinentListResponse><ns1:getContinentListResult><xsd:schema><element name="test" type=…
68 string(65) "<xsd:schema><element name="test" type="xsd:string"/></xsd:schema>"
/PHP-5.5/ext/oci8/
H A Doci8_collection.c384 int php_oci_collection_append_string(php_oci_collection *collection, char *element, int element_len… in php_oci_collection_append_string() argument
390 …OCIStringAssignText, (connection->env, connection->err, (CONST oratext *)element, element_len, &oc… in php_oci_collection_append_string()
419 int php_oci_collection_append(php_oci_collection *collection, char *element, int element_len TSRMLS… in php_oci_collection_append() argument
427 return php_oci_collection_append_date(collection, element, element_len TSRMLS_CC); in php_oci_collection_append()
431 return php_oci_collection_append_string(collection, element, element_len TSRMLS_CC); in php_oci_collection_append()
445 return php_oci_collection_append_number(collection, element, element_len TSRMLS_CC); in php_oci_collection_append()
462 dvoid *element; in php_oci_collection_element_get() local
478 &element, in php_oci_collection_element_get()
503 …PHP_OCI_CALL_RETURN(connection->errcode, OCIDateToText, (connection->err, element, 0, 0, 0, 0, &bu… in php_oci_collection_element_get()
520 OCIString *oci_string = *(OCIString **)element; in php_oci_collection_element_get()
[all …]
/PHP-5.5/Zend/tests/
H A Dbug69017.phpt26 Warning: Cannot add element to the array as the next element is already occupied in %sbug69017.php …
/PHP-5.5/ext/gd/tests/
H A Dbug67248.phpt25 Warning: imageaffinematrixget(): Invalid type for element 5 in %s on line %d
27 Warning: imageaffinematrixget(): Invalid type for element 6 in %s on line %d
/PHP-5.5/ext/standard/tests/serialize/
H A Dserialization_arrays_005.phpt23 // Change each element and dump result.
37 echo "\n\n--- Nested array references 1 element in containing array:\n";
44 echo "\n\n--- Nested array references 1 element in containing array (slightly different):\n";
59 echo "\n\n--- Containing array references 1 element in nested array:\n";
82 --- Nested array references 1 element in containing array:
151 --- Nested array references 1 element in containing array (slightly different):
289 --- Containing array references 1 element in nested array:
/PHP-5.5/ext/soap/tests/schema/
H A Dschema007.phpt9 <element name="testElement" type="tns:testType"/>
18 test_schema($schema,'element="tns:testElement"',123.5);
H A Dschema006.phpt16 <element name="testElement" type="tns:testType"/>
18 test_schema($schema,'element="tns:testElement"',123.5);
H A Dschema032.phpt11 <element name="int" type="int"/>
12 <element name="str" type="string"/>
/PHP-5.5/ext/spl/examples/
H A Dsearchiterator.inc13 * @brief Iterator to search for a specific element
34 /** @return whether the current element is valid

Completed in 33 milliseconds

12345678910>>...47