Home
last modified time | relevance | path

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

12345678910>>...46

/PHP-7.0/ext/xsl/tests/
H A Dbug54446_with_ini.phpt20 extension-element-prefixes="sax">
75 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
79 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
85 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
89 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
/PHP-7.0/ext/dom/tests/
H A Ddom_create_element.phpt119 $element = new DomElement('valid');
127 $element = new DomElement('-invalid');
135 $element = new DomElement(' ');
143 $element = new DomElement('prefix:valid');
151 $element = new DomElement('valid', '', 'http://valid.com');
159 $element = new DomElement('prefix:valid', '', 'http://valid.com');
167 $element = new DomElement('-invalid', '', 'http://valid.com');
175 $element = new DomElement('prefix:-invalid', '', 'http://valid.com');
183 $element = new DomElement('prefix:invalid', '', '');
199 $element = new DomElement('-prefix:valid', '', 'http://valid.com');
[all …]
H A Dbug42082.phpt15 $doc->loadXML("<element></element>");
/PHP-7.0/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…
H A Dzend_extensions.c260 zend_llist_element *element; in zend_get_extension() local
262 for (element = zend_extensions.head; element; element = element->next) { in zend_get_extension()
263 zend_extension *extension = (zend_extension *) element->data; in zend_get_extension()
/PHP-7.0/ext/standard/tests/array/
H A Darray_filter_variation6.phpt18 * Parameter : $input - array of which each element need to be checked in function
20 * Description : This function checks each element of an input array if element > 5 then
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-7.0/ext/soap/tests/schema/
H A Dschema033.phpt11 <element name="int" type="int"/>
16 <element name="int" type="int"/>
17 <element name="nest" type="tns:testType2"/>
H A Dschema049.phpt11 <element name="int" type="int"/>
12 <element name="int2" type="int"/>
19 <element name="int2" type="int"/>
/PHP-7.0/ext/simplexml/tests/
H A Dbug38354.phpt14 foreach ($xml->xpath("//*") as $element) {
15 var_dump($element->asXML());
/PHP-7.0/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-7.0/ext/oci8/
H A Doci8_collection.c393 int php_oci_collection_append_string(php_oci_collection *collection, char *element, int element_len) in php_oci_collection_append_string() argument
400 …OCIStringAssignText, (connection->env, connection->err, (CONST oratext *)element, element_len, &oc… in php_oci_collection_append_string()
431 int php_oci_collection_append(php_oci_collection *collection, char *element, int element_len) in php_oci_collection_append() argument
439 return php_oci_collection_append_date(collection, element, element_len); in php_oci_collection_append()
443 return php_oci_collection_append_string(collection, element, element_len); in php_oci_collection_append()
457 return php_oci_collection_append_number(collection, element, element_len); in php_oci_collection_append()
475 dvoid *element; in php_oci_collection_element_get() local
493 &element, in php_oci_collection_element_get()
516 …PHP_OCI_CALL_RETURN(errstatus, OCIDateToText, (connection->err, element, 0, 0, 0, 0, &buff_len, bu… in php_oci_collection_element_get()
532 OCIString *oci_string = *(OCIString **)element; in php_oci_collection_element_get()
[all …]
/PHP-7.0/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
/PHP-7.0/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-7.0/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-7.0/Zend/tests/arg_unpack/
H A Dbasic.phpt19 foreach ($array as $element) {
20 yield $element;
H A Dtraversable_with_by_ref_parameters.phpt11 foreach ($array as $element) {
12 yield $element;
/PHP-7.0/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-7.0/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-7.0/ext/json/
H A Djson_parser.y66 %type <value> members member elements element
182 | element
185 element:
191 | element ',' value
196 | element errlex
/PHP-7.0/Zend/tests/
H A Dbug69017.phpt26 Warning: Cannot add element to the array as the next element is already occupied in %sbug69017.php …

Completed in 42 milliseconds

12345678910>>...46