Home
last modified time | relevance | path

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

1...<<11121314151617181920>>...47

/PHP-5.6/ext/openssl/tests/
H A Dopenssl_open_basic.phpt8 $pub_key = "file://" . dirname(__FILE__) . "/public.key";
9 $priv_key = "file://" . dirname(__FILE__) . "/private_rsa_1024.key";
25 Warning: openssl_open(): unable to coerce parameter 4 into a private key in %s on line %d
H A Dbug36732.phpt24 $key = openssl_pkey_new();
25 $csr = openssl_csr_new($dn, $key, $configargs);
26 $crt = openssl_csr_sign($csr, NULL, $key, 365, $configargs);
/PHP-5.6/sapi/apache2handler/
H A Dphp_apache.h58 #define APR_ARRAY_FOREACH_OPEN(arr, key, val) \ argument
64 key = elts[i].key; \
H A Dphp_functions.c177 char *key, *val; in PHP_FUNCTION() local
188 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_FUNCTION()
190 add_assoc_string(return_value, key, val, 1); in PHP_FUNCTION()
201 char *key, *val; in PHP_FUNCTION() local
212 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_FUNCTION()
214 add_assoc_string(return_value, key, val, 1); in PHP_FUNCTION()
438 char *key, *val; in PHP_MINFO_FUNCTION() local
443 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_MINFO_FUNCTION()
447 php_info_print_table_row(2, key, val); in PHP_MINFO_FUNCTION()
458 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_MINFO_FUNCTION()
[all …]
/PHP-5.6/ext/standard/tests/array/
H A Darray_walk_object1.phpt17 * Prototype : callback(mixed $value, mixed $key, int $addvalue
19 * $key - keys in given input array
24 function callback($value, $key, $user_data)
26 var_dump($key);
H A Darray_walk_recursive_object1.phpt15 * Prototype : callback(mixed $value, mixed $key, int $addvalue
17 * $key - keys in given input array
22 function callback($value, $key, $user_data)
24 var_dump($key);
/PHP-5.6/ext/sysvshm/tests/
H A D003.phpt8 $key = ftok(dirname(__FILE__)."/003.phpt", 'q');
13 $s = shm_attach($key);
28 $key = ftok(dirname(__FILE__)."/003.phpt", 'q');
29 $s = shm_attach($key);
/PHP-5.6/ext/soap/tests/schema/
H A Dschema054.phpt16 …="ns2:Map"><item><key xsi:type="xsd:string">a</key><value xsi:type="xsd:int">123</value></item><it…
/PHP-5.6/ext/spl/tests/
H A Dbug32394.phpt9 foreach($object as $key => $value)
11 $object->offsetUnset($key);
H A Diterator_022.phpt64 function key()
67 return parent::key();
135 RecursiveArrayIteratorIterator::key
145 RecursiveArrayIteratorIterator::key
155 RecursiveArrayIteratorIterator::key
161 RecursiveArrayIteratorIterator::key
173 RecursiveArrayIteratorIterator::key
H A Diterator_010.phpt8 foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
10 echo "$key=>$val\n";
H A Diterator_017.phpt8 foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
10 echo "$key=>$val\n";
H A Dbug28822.phpt7 $array->offsetSet('key', 'value');
8 var_dump($array->offsetExists('key'));
/PHP-5.6/ext/dba/
H A Ddba_qdbm.c86 value = dpget(dba->dbf, key, keylen, 0, -1, &value_size); in DBA_FETCH_FUNC()
100 if (dpput(dba->dbf, key, keylen, val, vallen, mode == 1 ? DP_DKEEP : DP_DOVER)) { in DBA_UPDATE_FUNC()
105 php_error_docref2(NULL TSRMLS_CC, key, val, E_WARNING, "%s", dperrmsg(dpecode)); in DBA_UPDATE_FUNC()
116 value = dpget(dba->dbf, key, keylen, 0, -1, NULL); in DBA_EXISTS_FUNC()
129 return dpout(dba->dbf, key, keylen) ? SUCCESS : FAILURE; in DBA_DELETE_FUNC()
H A Ddba_gdbm.c35 #define GDBM_GKEY datum gkey; gkey.dptr = (char *) key; gkey.dsize = keylen
113 php_error_docref2(NULL TSRMLS_CC, key, val, E_WARNING, "%s", gdbm_strerror(gdbm_errno)); in DBA_UPDATE_FUNC()
116 php_error_docref2(NULL TSRMLS_CC, key, val, E_WARNING, "Unknown return value"); in DBA_UPDATE_FUNC()
141 char *key = NULL; in DBA_FIRSTKEY_FUNC() local
149 key = estrndup(gkey.dptr, gkey.dsize); in DBA_FIRSTKEY_FUNC()
155 return key; in DBA_FIRSTKEY_FUNC()
/PHP-5.6/ext/dom/tests/
H A Ddom007.phpt49 foreach ($nots AS $key=>$node) {
50 echo "Key $key: ".$node->nodeName." (".$node->systemId.") (".$node->publicId.")\n";
68 foreach ($ents AS $key=>$node) {
69 $xkeys[] = "Key: $key Name: ".$node->nodeName."\n";
72 foreach ($xkeys as $key => $node) {
82 foreach ($xkeys as $key => $node) {
/PHP-5.6/ext/spl/internal/
H A Dcachingiterator.inc37 private $key;
73 $this->key = $this->it->key();
83 $this->key = NULL;
110 /** @return the current key
112 function key()
114 return $this->key;
135 return $this->key;
/PHP-5.6/ext/intl/breakiterator/
H A Dbreakiterator_iterators.cpp142 static void _breakiterator_parts_get_current_key(zend_object_iterator *iter, zval *key TSRMLS_DC) in _breakiterator_parts_get_current_key()
145 ZVAL_LONG(key, iter->index); in _breakiterator_parts_get_current_key()
254 char *method, int method_len, const zend_literal *key TSRMLS_DC) in IntlPartsIterator_get_method()
260 if (key == NULL) { in IntlPartsIterator_get_method()
267 key = &local_literal; in IntlPartsIterator_get_method()
270 if ((key->hash_value & 0xFFFFFFFF) == 0xA2B486A1 /* hash of getrulestatus\0 */ in IntlPartsIterator_get_method()
272 && memcmp("getrulestatus", Z_STRVAL(key->constant), method_len) == 0) { in IntlPartsIterator_get_method()
279 method, method_len, key TSRMLS_CC); in IntlPartsIterator_get_method()
285 method, method_len, key TSRMLS_CC); in IntlPartsIterator_get_method()
288 if (key == &local_literal) { in IntlPartsIterator_get_method()
/PHP-5.6/tests/lang/
H A DforeachLoop.017.phpt6 foreach ($a as $val=>$key) echo $key;
/PHP-5.6/ext/opcache/
H A DZendAccelerator.c225 char *key; in ZEND_INI_MH() local
228 if (key) { in ZEND_INI_MH()
997 char *key; in accel_make_persistent_key_ex() local
1000 if (key) { in accel_make_persistent_key_ex()
1072 return ZCG(key); in accel_make_persistent_key_ex()
1329 if (key == ZCG(key)) { in compile_and_cache_file()
1535 key = ZCG(key);
1925 key &&
2088 key &&
2718 char *key; local
[all …]
/PHP-5.6/Zend/tests/
H A Dforeach.phpt6 foreach($foo as $key => &$val) {
8 $foo[$key] = 0;
H A Dbug41372.phpt7 echo key($Foo),"\n";
9 echo key($Foo),"\n";
/PHP-5.6/ext/dba/tests/
H A Ddba_gdbm.phpt24 "key number 6" written
25 Failed to write "key number 6" 2nd time
29 ["key number 6"]=>
H A Ddba_qdbm.phpt22 "key number 6" written
23 Failed to write "key number 6" 2nd time
27 ["key number 6"]=>
/PHP-5.6/ext/mcrypt/tests/
H A Dmcrypt_filters.phpt17 $key = substr(md5('pass1'.$passphrase, true) .
19 $opts = array('iv'=>$iv, 'key'=>$key);

Completed in 102 milliseconds

1...<<11121314151617181920>>...47