Home
last modified time | relevance | path

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

12345678910>>...43

/PHP-7.4/
H A D.gdbinit233 set $name = $p->key
352 if $p->key
353 ____print_str $p->key->val $p->key->len
H A DNEWS430 . Fixed bug #80747 (Providing RSA key size < 512 generates key that crash
802 . Fixed bug #79797 (Use of freed hash key in the phar_parse_zipfile
948 . Fixed bug #79364 (When copy empty array, next key is unspecified). (cmb)
1222 . Fixed bug #78903 (Conflict in RTD key for closures results in crash).
2676 . Fixed bug #76463 (var has array key type but not value type). (Laruence)
H A DUPGRADING26 array (such as $null["key"]) will now generate a notice. This does not
234 $array['key'] ??= computeDefault();
236 if (!isset($array['key'])) {
237 $array['key'] = computeDefault();
517 . Added openssl_x509_verify(mixed cert, mixed key) function that verifies the
518 signature of the certificate using a public key. A wrapper around the
624 a single question mark to the database and e.g. use the PostgreSQL JSON key
/PHP-7.4/TSRM/
H A Dtsrm_win32.c401 static shm_pair *shm_get(key_t key, void *addr) in shm_get() argument
410 if (!addr && ptr->descriptor->shm_perm.key == key) { in shm_get()
618 TSRM_API int shmget(key_t key, size_t size, int flags) in shmget() argument
625 if (key != IPC_PRIVATE) { in shmget()
667 shm = shm_get(key, NULL); in shmget()
678 shm->descriptor->shm_perm.key = key; in shmget()
691 …if (NULL != shm->descriptor && (shm->descriptor->shm_perm.key != key || size > shm->descriptor->sh… in shmget()
700 return key; in shmget()
705 shm_pair *shm = shm_get(key, NULL); in shmat()
749 shm_pair *shm = shm_get(key, NULL); in shmctl()
[all …]
H A Dtsrm_win32.h30 key_t key; member
107 TSRM_API int shmget(key_t key, size_t size, int flags);
108 TSRM_API void *shmat(int key, const void *shmaddr, int flags);
110 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf);
/PHP-7.4/Zend/
H A Dbench.php204 foreach($hash1 as $key => $value) $hash2[$key] += $value;
/PHP-7.4/Zend/tests/
H A D007.phpt42 ["key"]=>
52 ["key"]=>
62 ["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 Darray_offset.phpt2 Ensure "undefined offset" notice formats message corectly when undefined key is negative
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"]));
H A Dbug40705.phpt13 var_dump(key($foo));
15 var_dump(key($foo));
19 var_dump(key($foo));
/PHP-7.4/Zend/tests/assert/
H A Dexpect_007.phpt10 "key" => "X-HTTP ",
16 …match("~^([a-zA-Z0-9-]+)$~", $data["key"]), new HeaderMalfunctionError("malformed key found at {$n…
19 Fatal error: Uncaught HeaderMalfunctionError: malformed key found at 1 "X-HTTP " in %sexpect_007.ph…
H A Dexpect_015.phpt38 foreach ($a as $key => &$val) {
39 print "$key => $val\n";
178 foreach ($a as $key => &$val) {
179 print "$key => $val\n";

Completed in 55 milliseconds

12345678910>>...43