Home
last modified time | relevance | path

Searched refs:key (Results 1 – 25 of 1144) sorted by path

12345678910>>...46

/PHP-5.5/
H A DINSTALL1132 where ^ represents the Ctrl key.
1596 after the registry key mentioned below.
1764 values are stored in the registry key HKLM\SOFTWARE\PHP\Per Directory
1767 stored in the key HKLM\SOFTWARE\PHP\Per Directory
1770 of it. The values under the key should have the name of the PHP
H A DNEWS588 . Fixed bug #69125 (Array numeric string as key). (Laruence)
1323 . Fixed bug #66501 (Add EC key support to php_openssl_is_private_key).
1531 . Fixed bug #65708 (dba functions cast $key param to string in-place,
2351 . Fixed bug #61930 (openssl corrupts ssl key resource when using
4632 . Fixed bug #52534 (var_export array with negative key). (Felipe)
6460 - Fixed bug #45877 (Array key '2147483647' left as string). (Matt)
6566 content_type key). (Mikko)
7382 - Fixed bug #41527 (WDDX deserialize numeric string array key).
8196 . Added openssl_pkey_get_details, returns the details of a key
9288 - Fixed bugs #35022, #35019 (Regression in the behavior of key() and
[all …]
H A DREADME.RELEASE_PROCESS223 g. if the windows builds aren't ready yet prefix the "windows" key with a dot (".windows")
H A DUPGRADING.INTERNALS108 void (*get_current_key)(zend_object_iterator *iter, zval *key TSRMLS_DC);
110 The key should be written into the zval* using the ZVAL_* macros.
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c612 unsigned long key = realpath_cache_key(path, path_len TSRMLS_CC); in realpath_cache_del() local
614 unsigned long key = realpath_cache_key(path, path_len); in realpath_cache_del()
616 unsigned long n = key % (sizeof(CWDG(realpath_cache)) / sizeof(CWDG(realpath_cache)[0])); in realpath_cache_del()
620 if (key == (*bucket)->key && path_len == (*bucket)->path_len && in realpath_cache_del()
661 bucket->key = realpath_cache_key(path, path_len TSRMLS_CC); in realpath_cache_add()
663 bucket->key = realpath_cache_key(path, path_len); in realpath_cache_add()
683 n = bucket->key % (sizeof(CWDG(realpath_cache)) / sizeof(CWDG(realpath_cache)[0])); in realpath_cache_add()
694 unsigned long key = realpath_cache_key(path, path_len TSRMLS_CC); in realpath_cache_find() local
696 unsigned long key = realpath_cache_key(path, path_len); in realpath_cache_find()
699 unsigned long n = key % (sizeof(CWDG(realpath_cache)) / sizeof(CWDG(realpath_cache)[0])); in realpath_cache_find()
[all …]
H A Dtsrm_virtual_cwd.h212 unsigned long key; member
H A Dtsrm_win32.c410 static shm_pair *shm_get(int key, void *addr) in shm_get() argument
420 if (!addr && ptr->descriptor->shm_perm.key == key) { in shm_get()
591 TSRM_API int shmget(int key, int size, int flags) in shmget() argument
602 sprintf(shm_segment, "TSRM_SHM_SEGMENT:%d", key); in shmget()
623 shm = shm_get(key, NULL); in shmget()
629 shm->descriptor->shm_perm.key = key; in shmget()
642 …if (NULL != shm->descriptor && (shm->descriptor->shm_perm.key != key || size > shm->descriptor->sh… in shmget()
651 return key; in shmget()
656 shm_pair *shm = shm_get(key, NULL); in shmat()
687 shm_pair *shm = shm_get(key, NULL); in shmctl()
[all …]
H A Dtsrm_win32.h28 int key; member
104 TSRM_API int shmget(int key, int size, int flags);
105 TSRM_API void *shmat(int key, const void *shmaddr, int flags);
107 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf);
/PHP-5.5/Zend/
H A DZEND_CHANGES847 function key() {
875 foreach($obj as $key => $val) {
876 echo "$key = $val\n";
882 $key = $it->key();
884 echo "$key = $val\n";
1094 foreach(array_expr as $key => $val) statement
H A Dbench.php204 foreach($hash1 as $key => $value) $hash2[$key] += $value;
/PHP-5.5/Zend/tests/
H A D007.phpt40 ["key"]=>
50 ["key"]=>
60 ["key"]=>
H A D019.phpt99 // check the isset and unset on non existing key
H A D038.phpt2 Trying to use lambda as array key
H A Danonymous_func_002.phpt2 Testing anonymous function return as array key and accessing $GLOBALS
H A Dbug27598.phpt2 Bug #27598 (list() array key assignment causes HUGE memory leak)
H A Dbug32674.phpt30 public function key() {
32 $element = key($this->_elements);
H A Dbug32993.phpt11 public function key() { return key($this->arr); }
H A Dbug33171.phpt16 foreach ($this as $key => $val)
18 echo "$key => $val\n";
H A Dbug34467.phpt8 function __set ($key, $value) {
9 $this->arr[$key] = $value;
12 function __get ($key) {
13 return $this->arr[$key];
H A Dbug34873.phpt16 foreach ($cont as $this->var['key'] => $this->var['value'])
H A Dbug35509.phpt2 Bug #35509 (string constant as array key has different behavior inside object)
H A Dbug37715.phpt21 var_dump(key($a['b']));
26 var_dump(key($a['b']));
H A Dbug38146.phpt13 foreach($f->bar as $key => $value) {
14 print "$key => $value\n";
H A Dbug39036.phpt2 Bug #39036 (Unsetting key of foreach() yields segmentation fault)
6 $key = 'asdf';
8 foreach (get_defined_vars() as $key => $value) {
9 unset($$key);
12 var_dump($key);
17 Notice: Undefined variable: key in %s on line %d
H A Dbug40509.phpt2 Bug #40509 (key() function changed behaviour if global array is used within function)
15 var_dump(key($arr["v"]));
17 var_dump(key($arr["v"]));
21 var_dump(key($arr["v"]));

Completed in 107 milliseconds

12345678910>>...46