Home
last modified time | relevance | path

Searched refs:index (Results 1 – 25 of 630) sorted by path

12345678910>>...26

/PHP-5.5/
H A DINSTALL1156 # Since most users will want index.php to work we
1157 # also automatically enable index.php
1159 DirectoryIndex index.html index.php
1167 4. Be sure the DirectoryIndex loads the desired default index file
1168 This is also set in httpd.conf. Typically index.php and index.html
1169 are used. By default index.php is enabled because it's also in the
H A DNEWS880 . Fixed bug #67985 (Incorrect last used array index copied to new array after
3006 . Fixed bug #61058 (array_fill leaks if start index is PHP_INT_MAX).
3633 . Fixed bug #61058 (array_fill leaks if start index is PHP_INT_MAX).
5466 - Fixed sanity check for the color index in imagecolortransparent. (Pierre)
6410 PHP_INT_MAX index value). (Matt)
6951 - Fixed bug #44191 (preg_grep messes up array index). (Felipe)
6954 - Fixed bug #44171 (Invalid FETCH_COLUMN index does not raise an error). (Ilia)
7352 - Fixed bug #41685 (array_push() fails to warn when next index is
7361 - Fixed bug #41630 (segfault when an invalid color index is present in the
8256 - Fixed infinite loop when a wrong color index is given to imagefill (Pierre)
[all …]
H A DUPGRADING.INTERNALS36 an index in EX(call_slots)
37 * opcode ZEND_NEW uses extended_vallue as an index in EX(call_slots)
39 an index in EX(call_slots)
/PHP-5.5/Zend/
H A DZEND_CHANGES901 index being NULL. That means that as with standard arrays you
910 function offsetExists($index) {
911 return array_key_exists($index, $this->a);
913 function offsetGet($index) {
914 return $this->a[$index];
916 function offsetSet($index, $newval) {
917 return $this->a[$index] = $newval;
919 function offsetUnset($index) {
920 unset($this->a[$index]);
H A Dzend_API.c1308 ZEND_API int add_index_long(zval *arg, ulong index, long n) /* {{{ */ in add_index_long() argument
1315 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_long()
1319 ZEND_API int add_index_null(zval *arg, ulong index) /* {{{ */ in add_index_null() argument
1326 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_null()
1330 ZEND_API int add_index_bool(zval *arg, ulong index, int b) /* {{{ */ in add_index_bool() argument
1337 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_bool()
1341 ZEND_API int add_index_resource(zval *arg, ulong index, int r) /* {{{ */ in add_index_resource() argument
1352 ZEND_API int add_index_double(zval *arg, ulong index, double d) /* {{{ */ in add_index_double() argument
1385 ZEND_API int add_index_zval(zval *arg, ulong index, zval *value) /* {{{ */ in add_index_zval() argument
1496 ZEND_API int add_get_index_long(zval *arg, ulong index, long l, void **dest) /* {{{ */ in add_get_index_long() argument
[all …]
H A Dzend_API.h407 ZEND_API int add_index_zval(zval *arg, ulong index, zval *value);
H A Dzend_alloc.c714 unsigned int index = 0; in zend_mm_low_bit()
719 index += n; in zend_mm_low_bit()
723 return index + n; in zend_mm_low_bit()
730 size_t index; in zend_mm_add_to_free_list() local
849 if (EXPECTED(heap->free_buckets[index*2] == heap->free_buckets[index*2+1])) { in zend_mm_remove_from_free_list()
1867 index++; in zend_mm_search_large_block()
2092 if (++heap->cache_stat[index].count > heap->cache_stat[index].max_count) { in _zend_mm_free_int()
2093 heap->cache_stat[index].max_count = heap->cache_stat[index].count; in _zend_mm_free_int()
2203 cache = &heap->cache[index]; in _zend_mm_realloc_int()
2209 if (++heap->cache_stat[index].count > heap->cache_stat[index].max_count) { in _zend_mm_realloc_int()
[all …]
H A Dzend_compile.c827 ulong index; in fetch_array_dim() local
830 …VAL(CONSTANT(opline.op2.constant)), Z_STRLEN(CONSTANT(opline.op2.constant))+1, index, numeric = 1); in fetch_array_dim()
833 ZVAL_LONG(&CONSTANT(opline.op2.constant), index); in fetch_array_dim()
5750 ulong index; in zend_do_init_array() local
5753 …L(CONSTANT(opline->op2.constant)), Z_STRLEN(CONSTANT(opline->op2.constant))+1, index, numeric = 1); in zend_do_init_array()
5756 ZVAL_LONG(&CONSTANT(opline->op2.constant), index); in zend_do_init_array()
5782 ulong index; in zend_do_add_array_element() local
5785 …L(CONSTANT(opline->op2.constant)), Z_STRLEN(CONSTANT(opline->op2.constant))+1, index, numeric = 1); in zend_do_add_array_element()
5788 ZVAL_LONG(&CONSTANT(opline->op2.constant), index); in zend_do_add_array_element()
H A Dzend_dynamic_array.c58 ZEND_API void *zend_dynamic_array_get_element(dynamic_array *da, unsigned int index) in zend_dynamic_array_get_element() argument
60 if (index >= da->current) { in zend_dynamic_array_get_element()
63 return (void *)(da->array+index*da->element_size); in zend_dynamic_array_get_element()
H A Dzend_dynamic_array.h36 ZEND_API void *zend_dynamic_array_get_element(dynamic_array *da, unsigned int index);
H A Dzend_interfaces.c191 *int_key = _iter->index;
H A Dzend_iterators.h60 ulong index; /* private to fe_reset/fe_fetch opcodes */ member
/PHP-5.5/Zend/tests/
H A Dbug26696.phpt2 Bug #26696 (crash in switch() when string index is used)
H A Dbug47836.phpt2 Bug #47836 (array operator [] inconsistency when the array has PHP_INT_MAX index value)
H A Dbug55509.phpt21 $index = strtolower($tmp[0]);
23 $infos[$index] = $value;
38 $index = strtolower($tmp[0]);
40 $infos[$index] = $value;
H A Dbug67985.phpt2 Bug #67985 - Last used array index not copied to new array at assignment
H A Dconst_dereference_001.phpt18 Notice: Undefined index: foo in %sconst_dereference_001.php on line %d
H A Dconst_dereference_003.phpt18 Notice: Undefined index: foo in %sconst_dereference_003.php on line %d
H A Dglobals_001.phpt29 Notice: Undefined index: PHP_SELF in %s on line %d
H A Dglobals_002.phpt32 Notice: Undefined index: PHP_SELF in %s on line %d
H A Dglobals_003.phpt38 Notice: Undefined index: PHP_SELF in %s on line %d
H A Dglobals_004.phpt23 Notice: Undefined index: PHP_SELF in %s on line %d
H A Dobject_handlers.phpt22 function offsetGet($index) {
23 $GLOBALS["y"] = $index;
25 function offsetSet($index, $newval) {
26 $GLOBALS["y"] = $index;
28 function offsetExists($index) {
29 $GLOBALS["y"] = $index;
31 function offsetUnset($index) {
32 $GLOBALS["y"] = $index;
H A Doffset_array.phpt31 Notice: Undefined index: in %s on line %d
34 Notice: Undefined index: run away in %s on line %d
H A Dunset_cv06.phpt21 Notice: Undefined index: x in %sunset_cv06.php on line %d

Completed in 244 milliseconds

12345678910>>...26