Home
last modified time | relevance | path

Searched refs:key (Results 201 – 225 of 1086) sorted by relevance

12345678910>>...44

/PHP-5.4/ext/spl/tests/
H A Diterator_023.phpt64 function key()
67 return parent::key();
135 RecursiveArrayIteratorIterator::key
145 RecursiveArrayIteratorIterator::key
155 RecursiveArrayIteratorIterator::key
161 RecursiveArrayIteratorIterator::key
173 RecursiveArrayIteratorIterator::key
187 RecursiveArrayIteratorIterator::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
/PHP-5.4/ext/phar/tests/
H A Dphar_buildfromiterator9.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
H A Dphar_buildfromiterator7.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
57 key
/PHP-5.4/ext/phar/tests/tar/
H A Dphar_buildfromiterator9.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
H A Dphar_buildfromiterator4.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
H A Dphar_buildfromiterator7.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
57 key
/PHP-5.4/ext/phar/tests/zip/
H A Dphar_buildfromiterator9.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
H A Dphar_buildfromiterator4.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
H A Dphar_buildfromiterator7.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
57 key
/PHP-5.4/ext/standard/tests/array/
H A Darray_change_key_case_variation.phpt13 /* should return one value key pair with key being in lowercase */
17 /* should return one value key pair with key being in uppercase */
H A Darray_diff_assoc_variation8.phpt16 * 3. duplicate key names
21 $array_index = array('a', 'b', 'c', 0 => 'd', 'b'); //duplicate key (0), duplicate value (b)
22 $array_assoc = array ('2' => 'c', //same key=>value pair, different order
25 'b' => '3', //key and value from array_index swapped
H A D009.phpt2 Test key(), current(), next() & reset() functions
42 var_dump( key($sub_array) ); // key of the current element
47 var_dump( key($sub_array) ); // access the array after reset
62 var_dump( key($sub_array) ); // key of the current element
67 var_dump( key($sub_array) ); // access the array after reset
78 var_dump( key($unset_array) );
85 var_dump( key() );
92 var_dump( key($temp_array, $temp_array) );
101 var_dump( key($int_var) );
102 var_dump( key($float_var) );
[all …]
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.4/sapi/apache2filter/
H A Dphp_apache.h64 #define APR_ARRAY_FOREACH_OPEN(arr, key, val) \ argument
70 key = elts[i].key; \
/PHP-5.4/ext/openssl/tests/
H A D018.phpt8 $privkey = "file://" . dirname(__FILE__) . "/private.key";
18 Warning: openssl_sign(): supplied key param cannot be coerced into a private key in %s on line %d
/PHP-5.4/ext/exif/
H A Dexample.php16 foreach($exif as $key=>$section) {
18 echo "$key.$name: $val<br>\n";
/PHP-5.4/ext/spl/examples/
H A Ddba_dump.php38 foreach($db as $key => $val) {
39 echo "'$key' => '$val'\n";
/PHP-5.4/main/
H A Dphp_ini.c282 char *key = NULL; in php_ini_parser_cb() local
287 key = Z_STRVAL_P(arg1); in php_ini_parser_cb()
288 key = key + sizeof("PATH") - 1; in php_ini_parser_cb()
299 key = key + sizeof("HOST") - 1; in php_ini_parser_cb()
311 while (key_len > 0 && (key[key_len - 1] == '/' || key[key_len - 1] == '\\')) { in php_ini_parser_cb()
313 key[key_len] = 0; in php_ini_parser_cb()
317 while (*key && ( in php_ini_parser_cb()
318 *key == '=' || in php_ini_parser_cb()
319 *key == ' ' || in php_ini_parser_cb()
320 *key == '\t' in php_ini_parser_cb()
[all …]
/PHP-5.4/sapi/apache2handler/
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.4/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.4/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.4/ext/dba/
H A Ddba_qdbm.c86 value = dpget(dba->dbf, key, keylen, 0, -1, &value_size); in DBA_FETCH_FUNC()
101 result = 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()
114 value = dpget(dba->dbf, key, keylen, 0, -1, NULL); in DBA_EXISTS_FUNC()
127 return dpout(dba->dbf, key, keylen) ? SUCCESS : FAILURE; in DBA_DELETE_FUNC()
/PHP-5.4/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…

Completed in 32 milliseconds

12345678910>>...44