Home
last modified time | relevance | path

Searched refs:key (Results 251 – 275 of 1127) sorted by relevance

1...<<11121314151617181920>>...46

/PHP-8.0/ext/standard/tests/array/
H A Darray_walk_recursive_basic2.phpt10 function test_alter(&$item, $key, $prefix)
15 var_dump($key); // key
20 function test_print($item, $key)
25 var_dump($key); // key
H A Darray_walk_recursive_variation6.phpt12 function for_numeric($value, $key, $user_data)
16 var_dump($key);
22 function for_string($value, $key)
26 var_dump($key);
31 function for_mixed($value, $key)
35 var_dump($key);
50 // binary key
H A Darray_key_exists_variation5.phpt15 echo "\n-- Attempt to match key in sub-array --\n";
16 // this key is in the sub-array
27 -- Attempt to match key in sub-array --
/PHP-8.0/ext/session/tests/
H A D024.phpt28 function read($key)
30 print "READ: $key\n";
34 function write($key, $val)
36 print "WRITE: $key, $val\n";
41 function destroy($key)
43 print "DESTROY: $key\n";
/PHP-8.0/ext/openssl/tests/
H A Dbug36732.phpt23 $key = openssl_pkey_new();
24 $csr = openssl_csr_new($dn, $key, $configargs);
25 $crt = openssl_csr_sign($csr, NULL, $key, 365, $configargs);
H A Dopenssl_open_basic.phpt8 $pub_key = "file://" . __DIR__ . "/public.key";
9 $priv_key = "file://" . __DIR__ . "/private_rsa_1024.key";
26 Warning: openssl_open(): Unable to coerce parameter 4 into a private key in %s on line %d
/PHP-8.0/ext/dba/tests/
H A Ddba_lmdb.phpt25 "key number 6" written
26 Failed to write "key number 6" 2nd time
30 ["key number 6"]=>
H A Ddba_qdbm.phpt25 "key number 6" written
26 Failed to write "key number 6" 2nd time
30 ["key number 6"]=>
H A Ddba_gdbm.phpt23 "key number 6" written
24 Failed to write "key number 6" 2nd time
28 ["key number 6"]=>
H A Ddba013.phpt2 DBA with array key with empty array
27 Fatal error: Uncaught Error: dba_insert(): Argument #1 ($key) must have exactly two elements: "key"…
/PHP-8.0/ext/standard/
H A Dcrypt_freesec.c377 (uint32_t)(u_char)key[3] | in des_setkey()
378 ((uint32_t)(u_char)key[2] << 8) | in des_setkey()
380 ((uint32_t)(u_char)key[0] << 24); in des_setkey()
382 (uint32_t)(u_char)key[7] | in des_setkey()
383 ((uint32_t)(u_char)key[6] << 8) | in des_setkey()
385 ((uint32_t)(u_char)key[4] << 24); in des_setkey()
624 *q++ = *key << 1; in _crypt_extended_r()
625 if (*key) in _crypt_extended_r()
626 key++; in _crypt_extended_r()
653 while (*key) { in _crypt_extended_r()
[all …]
/PHP-8.0/ext/session/
H A Dphp_session.h32 #define PS_READ_ARGS void **mod_data, zend_string *key, zend_string **val, zend_long maxlifetime
33 #define PS_WRITE_ARGS void **mod_data, zend_string *key, zend_string *val, zend_long maxlifetime
34 #define PS_DESTROY_ARGS void **mod_data, zend_string *key
37 #define PS_VALIDATE_SID_ARGS void **mod_data, zend_string *key
38 #define PS_UPDATE_TIMESTAMP_ARGS void **mod_data, zend_string *key, zend_string *val, zend_long max…
126 smart_str key; member
269 PHPAPI int php_session_valid_key(const char *key);
286 zend_string *key; \
292 ZEND_HASH_FOREACH_KEY(_ht, num_key, key) { \
293 if (key == NULL) { \
[all …]
/PHP-8.0/ext/standard/tests/network/
H A Dsetcookie_array_option_error.phpt10 // Unrecognized key and no valid keys
16 // Numeric key and no valid keys
22 // Unrecognized key
28 // Invalid path key content
34 // Invalid domain key content
/PHP-8.0/Zend/tests/
H A Dbug41372.phpt7 echo key($Foo),"\n";
9 echo key($Foo),"\n";
/PHP-8.0/ext/spl/tests/
H A Darray_001.phpt80 Warning: Undefined array key 6 in %s on line %d
83 Warning: Undefined array key "b" in %s on line %d
86 Warning: Undefined array key 7 in %s on line %d
88 Warning: Undefined array key "c" in %s on line %d
H A Dbug31926.phpt9 foreach($it as $key => $val) {
10 var_dump($key, $val);
H A Diterator_023.phpt64 function key()
67 return parent::key();
133 RecursiveArrayIteratorIterator::key
143 RecursiveArrayIteratorIterator::key
153 RecursiveArrayIteratorIterator::key
159 RecursiveArrayIteratorIterator::key
171 RecursiveArrayIteratorIterator::key
185 RecursiveArrayIteratorIterator::key
/PHP-8.0/ext/phar/tests/tar/
H A Dphar_buildfromiterator7.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
56 key
/PHP-8.0/ext/phar/tests/zip/
H A Dphar_buildfromiterator7.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
56 key
/PHP-8.0/ext/hash/tests/
H A Dhash_hmac_file_error.phpt9 $key = 'secret';
13 var_dump(hash_hmac_file('foo', $file, $key, TRUE));
21 var_dump(hash_hmac_file('crc32', $file, $key, TRUE));
29 var_dump(hash_hmac_file('md5', $file.chr(0).$file, $key, TRUE));
/PHP-8.0/sapi/apache2handler/
H A Dphp_apache.h59 #define APR_ARRAY_FOREACH_OPEN(arr, key, val) \ argument
65 key = elts[i].key; \
/PHP-8.0/ext/hash/
H A Dhash.c571 char *data, *key; in PHP_FUNCTION() local
588 char *data, *key; in PHP_FUNCTION() local
624 if (!key || (ZSTR_LEN(key) == 0)) { in PHP_FUNCTION()
640 hash->key = NULL; in PHP_FUNCTION()
655 memcpy(K, ZSTR_VAL(key), ZSTR_LEN(key)); in PHP_FUNCTION()
802 efree(hash->key); in PHP_FUNCTION()
803 hash->key = NULL; in PHP_FUNCTION()
1212 if (key) { in PHP_FUNCTION()
1343 efree(key); in PHP_FUNCTION()
1376 if (hash->key) { in php_hashcontext_dtor()
[all …]
/PHP-8.0/ext/standard/tests/strings/
H A Dbug27276.phpt8 $key = "{BLURPS}";
10 str_replace($key, $replacement, $string);
/PHP-8.0/tests/lang/
H A Dbug23624.phpt2 Bug #23624 (foreach leaves current array key as null)
7 foreach($arr as $key => $value);
/PHP-8.0/Zend/tests/type_declarations/
H A Dtyped_properties_036.phpt9 foreach ($foo as $key => $bar) {
10 var_dump($key, $bar);

Completed in 59 milliseconds

1...<<11121314151617181920>>...46