Home
last modified time | relevance | path

Searched refs:element (Results 1 – 25 of 1163) sorted by path

12345678910>>...47

/PHP-5.5/
H A DNEWS1116 . Fixed bug #67360 (Missing element after ArrayObject::getIterator). (Adam)
2192 . Implement FR #48358 (Add SplDoublyLinkedList::add() to insert an element
5899 . Added support for element names in context of XMLSchema's <any>. (Dmitry)
6660 - Fixed bug #46649 (Setting array element with that same array produces
7372 - Fixed bug #41582 (SimpleXML crashes when accessing newly created element).
7731 - Fixed bug #37386 (autocreating element doesn't assign value to first node).
8615 . Added SimpleXMLElement::getName() to retrieve name of element.
8617 . Added addChild() method for element creation supporting namespaces.
9225 - Fixed a bug where stream_get_meta_data() did not return the "uri" element
9414 - Fixed bug #34137 (assigning array element by reference causes binary mess).
[all …]
H A DREADME.RELEASE_PROCESS235 a. go over the list and put every element on one line
H A DUPGRADING.INTERNALS33 element of EX(call_slots)
/PHP-5.5/TSRM/
H A DTSRM.h164 #define TSRMG(id, type, element) (((type) (*((void ***) tsrm_ls))[TSRM_UNSHUFFLE_RSRC_ID(id)])->ele… argument
H A Dtsrm_virtual_cwd.c104 static int php_check_dots(const char *element, int n) in php_check_dots() argument
106 while (n-- > 0) if (element[n] != '.') break; in php_check_dots()
111 #define IS_DIRECTORY_UP(element, len) \ argument
112 (len >= 2 && !php_check_dots(element, len))
114 #define IS_DIRECTORY_CURRENT(element, len) \ argument
115 (len == 1 && element[0] == '.')
133 #define IS_DIRECTORY_UP(element, len) \ argument
134 (len == 2 && element[0] == '.' && element[1] == '.')
138 #define IS_DIRECTORY_CURRENT(element, len) \ argument
139 (len == 1 && element[0] == '.')
/PHP-5.5/Zend/
H A DZEND_CHANGES1098 A variable or element that is unset(), is now sent to oblivion
H A Dzend_builtin_functions.c464 zval *element; in ZEND_FUNCTION() local
466 ALLOC_ZVAL(element); in ZEND_FUNCTION()
467 *element = **((zval **) (p-(arg_count-i))); in ZEND_FUNCTION()
468 zval_copy_ctor(element); in ZEND_FUNCTION()
469 INIT_PZVAL(element); in ZEND_FUNCTION()
470 zend_hash_next_index_insert(return_value->value.ht, &element, sizeof(zval *), NULL); in ZEND_FUNCTION()
H A Dzend_compile.c5802 zval *element; in zend_do_add_static_array_element() local
5804 ALLOC_ZVAL(element); in zend_do_add_static_array_element()
5805 *element = expr->u.constant; in zend_do_add_static_array_element()
5810 Z_TYPE_P(element) |= IS_CONSTANT_INDEX; in zend_do_add_static_array_element()
5822 zend_symtable_update(Z_ARRVAL(result->u.constant), "", 1, &element, sizeof(zval *), NULL); in zend_do_add_static_array_element()
5826 …zend_hash_index_update(Z_ARRVAL(result->u.constant), Z_LVAL(offset->u.constant), &element, sizeof(… in zend_do_add_static_array_element()
5836 zend_hash_next_index_insert(Z_ARRVAL(result->u.constant), &element, sizeof(zval *), NULL); in zend_do_add_static_array_element()
5841 void zend_do_add_list_element(const znode *element TSRMLS_DC) /* {{{ */ in zend_do_add_list_element()
5845 if (element) { in zend_do_add_list_element()
5846 zend_check_writable_variable(element); in zend_do_add_list_element()
[all …]
H A Dzend_compile.h402 #define EX(element) execute_data.element argument
588 void zend_do_add_list_element(const znode *element TSRMLS_DC);
H A Dzend_execute.c170 #define EX(element) execute_data->element argument
H A Dzend_execute_API.c557 zval **element, *new_val; in zval_update_constant_ex() local
579 while (zend_hash_get_current_data(Z_ARRVAL_P(p), (void **) &element) == SUCCESS) { in zval_update_constant_ex()
580 if (!(Z_TYPE_PP(element) & IS_CONSTANT_INDEX)) { in zval_update_constant_ex()
584 Z_TYPE_PP(element) &= ~IS_CONSTANT_INDEX; in zval_update_constant_ex()
619 if (Z_REFCOUNT_PP(element) > 1) { in zval_update_constant_ex()
621 *new_val = **element; in zval_update_constant_ex()
627 Z_TYPE_PP(element) |= IS_CONSTANT_INDEX; in zval_update_constant_ex()
628 zval_ptr_dtor(element); in zval_update_constant_ex()
629 *element = new_val; in zval_update_constant_ex()
H A Dzend_extensions.c232 zend_llist_element *element; in zend_get_extension() local
234 for (element = zend_extensions.head; element; element = element->next) { in zend_get_extension()
235 zend_extension *extension = (zend_extension *) element->data; in zend_get_extension()
H A Dzend_hash.c26 (element)->pNext = (list_head); \
27 (element)->pLast = NULL; \
28 if ((element)->pNext) { \
29 (element)->pNext->pLast = (element); \
33 (element)->pListLast = (ht)->pListTail; \
34 (ht)->pListTail = (element); \
35 (element)->pListNext = NULL; \
36 if ((element)->pListLast != NULL) { \
37 (element)->pListLast->pListNext = (element); \
40 (ht)->pListHead = (element); \
[all …]
/PHP-5.5/Zend/tests/
H A D019.phpt101 // try to unset the element which is non-existent
103 // check using isset() & empty() on a non_existent element in the array
115 // unset each element in the array and see the working of unset, isset & empty
121 // unset the element
123 // dump the array after element was unset
125 // check using isset for the element that was unset
134 // because of using isset, empty and unset on its element
H A Dbug31720.phpt5 $array = array('at least one element');
H A Dbug32674.phpt21 $element = current($this->_elements);
22 return $element;
26 $element = next($this->_elements);
27 return $element;
32 $element = key($this->_elements);
33 return $element;
H A Dbug34137.phpt2 Bug #34137 (assigning array element by reference causes binary mess)
H A Dbug47836.phpt12 Warning: Cannot add element to the array as the next element is already occupied in %s on line 4
H A Dbug63762.phpt50 Warning: args element is no array in %s on line %d
H A Dbug69017.phpt26 Warning: Cannot add element to the array as the next element is already occupied in %sbug69017.php …
H A Derrmsg_042.phpt2 errmsg: key element cannot be a reference
13 Fatal error: Key element cannot be a reference in %s on line %d
H A Dforeach_list_003.phpt13 Fatal error: Cannot use list as key element in %sforeach_list_003.php on line %d
H A Dfunction_exists_variation1.phpt71 // loop through with each element of the $inputs array to test function_exists() function
H A Dget_defined_functions_basic.phpt31 echo "TEST FAILED: no element in result array with key 'internal'\n";
43 echo "TEST FAILED: no element in result array with key 'user'\n";
/PHP-5.5/Zend/tests/generators/
H A Dbug66041.phpt11 $fixedArray[0] = 'the element';
17 string(11) "the element"

Completed in 117 milliseconds

12345678910>>...47