Home
last modified time | relevance | path

Searched refs:key2 (Results 51 – 63 of 63) sorted by relevance

123

/php-src/ext/dba/tests/
H A Ddba_optimize.phpt18 dba_insert("key2", "Content String 2", $db_file);
H A Ddba_sync.phpt18 dba_insert("key2", "Content String 2", $db_file);
/php-src/ext/standard/tests/array/
H A Darray_chunk_basic1.phpt16 array('key1' => 1, "key2" => 2, "key3" => 3),
H A Darray_intersect_ukey_variation2.phpt12 function key_compare_func($key1, $key2)
14 if ($key1 == $key2)
17 return ($key1 > $key2)? 1:-1;
H A Darray_diff_ukey_variation2.phpt13 function key_compare_func($key1, $key2)
15 if ($key1 == $key2) {
18 return ($key1 > $key2)? 1:-1;
H A Darray_intersect_ukey_variation1.phpt12 function key_compare_func($key1, $key2)
14 if ($key1 == $key2)
17 return ($key1 > $key2)? 1:-1;
H A Darray_diff_ukey_variation1.phpt11 function key_compare_func($key1, $key2)
13 if ($key1 == $key2) {
16 return ($key1 > $key2)? 1:-1;
H A Darray_rand_variation4.phpt34 /*6*/ array('##' => "key1", '&$r' => 'key2', '!' => "key3", '<>' =>'key4',
/php-src/ext/standard/tests/strings/
H A Djoin_variation4.phpt15 array("key1", "key2"),
H A Dimplode_variation.phpt38 array("key1", "key2"),
/php-src/ext/intl/collator/
H A Dcollator_sort.c225 char* key2 = ((collator_sort_key_index_t*)p2)->key; in collator_cmp_sort_keys() local
227 return strcmp( key1, key2 ); in collator_cmp_sort_keys()
/php-src/ext/soap/
H A Dphp_schema.c1867 smart_str key2 = {0}; in schema_attribute() local
1890 smart_str_appends(&key2, (char*)nsPtr->href); in schema_attribute()
1891 smart_str_appendc(&key2, ':'); in schema_attribute()
1892 smart_str_appends(&key2, (char*)attr->name); in schema_attribute()
1893 smart_str_0(&key2); in schema_attribute()
1894 zend_hash_add_ptr(newAttr->extraAttributes, key2.s, ext); in schema_attribute()
1895 smart_str_free(&key2); in schema_attribute()
/php-src/Zend/
H A Dzend_hash.c3068 zend_string *key1, *key2; in zend_hash_compare_impl() local
3096 key2 = NULL; in zend_hash_compare_impl()
3107 key2 = p->key; in zend_hash_compare_impl()
3112 if (key1 == NULL && key2 == NULL) { /* numeric indices */ in zend_hash_compare_impl()
3116 } else if (key1 != NULL && key2 != NULL) { /* string indices */ in zend_hash_compare_impl()
3117 if (ZSTR_LEN(key1) != ZSTR_LEN(key2)) { in zend_hash_compare_impl()
3118 return ZSTR_LEN(key1) > ZSTR_LEN(key2) ? 1 : -1; in zend_hash_compare_impl()
3121 result = memcmp(ZSTR_VAL(key1), ZSTR_VAL(key2), ZSTR_LEN(key1)); in zend_hash_compare_impl()

Completed in 70 milliseconds

123