/PHP-7.0/ext/standard/tests/array/ |
H A D | bug43495.phpt | 5 $a=array("key1"=>array("key2"=>array())); 6 $a["key1"]["key2"]["key3"]=&$a; 8 $b=array("key1"=>array("key2"=>array())); 9 $b["key1"]["key2"]["key3"]=&$b; 14 $a["key1"]["key2"]["key3"] = null; 15 $b["key1"]["key2"]["key3"] = null;
|
H A D | array_user_key_compare.phpt | 7 function array_compare(&$key1, &$key2) 9 $GLOBALS['a'] = &$key2; 10 unset($key2);
|
H A D | bug42850.phpt | 7 $data = array ('key1' => 'val1', array('key2' => 'val2')); 32 ["key2"]=> 41 ["key2"]=> 56 ["key2"]=>
|
H A D | array_diff_ukey_basic.phpt | 9 function key_compare_func($key1, $key2) { 10 if ($key1 == $key2) return 0; 11 else if ($key1 > $key2) return 1;
|
H A D | array_intersect_ukey_basic.phpt | 9 function key_compare_func($key1, $key2) { 10 if ($key1 == $key2) return 0; 11 else if ($key1 > $key2) return 1;
|
H A D | array_merge_variation9.phpt | 22 $arr2 = array('key1' => 'val1', 'key2' => 'val2', 'key3' => 'val3'); 50 ["key2"]=> 58 ["key2"]=> 80 ["key2"]=> 88 ["key2"]=>
|
H A D | array_intersect_ukey_variation9.phpt | 18 static function static_compare_func($key1, $key2) { 19 return strcasecmp($key1, $key2); 22 public function class_compare_func($key1, $key2) { 23 return strcasecmp($key1, $key2);
|
H A D | array_diff_uassoc_variation5.phpt | 18 function key_compare_func($key1, $key2) 20 if ($key1 === $key2) { 23 return ($key1 > $key2)? 1:-1;
|
H A D | array_diff_uassoc_variation7.phpt | 17 function key_compare_func($key1, $key2) 19 if ($key1 === $key2) { 22 return ($key1 > $key2)? 1:-1;
|
H A D | array_intersect_ukey_variation6.phpt | 18 function key_compare_func($key1, $key2) 20 if ($key1 == $key2) 23 return ($key1 > $key2)? 1:-1;
|
H A D | array_diff_uassoc_variation6.phpt | 18 function key_compare_func($key1, $key2) 20 if ($key1 === $key2) { 23 return ($key1 > $key2)? 1:-1;
|
H A D | array_diff_uassoc_variation8.phpt | 18 function key_compare_func($key1, $key2) 20 if ($key1 === $key2) { 23 return ($key1 > $key2)? 1:-1;
|
H A D | array_intersect_ukey_variation5.phpt | 19 function key_compare_func($key1, $key2) 21 if ($key1 == $key2) 24 return ($key1 > $key2)? 1:-1;
|
H A D | array_intersect_ukey_variation7.phpt | 19 function key_compare_func($key1, $key2) 21 if ($key1 == $key2) 24 return ($key1 > $key2)? 1:-1;
|
H A D | array_key_exists_basic.phpt | 18 $key2 = 'val'; 21 var_dump(array_key_exists($key2, $search));
|
H A D | array_intersect_ukey_error.phpt | 17 function key_compare_func($key1, $key2) 19 if ($key1 == $key2) 22 return ($key1 > $key2)? 1:-1;
|
H A D | array_diff_ukey_variation7.phpt | 16 function key_compare_func($key1, $key2) 18 return strcasecmp($key1, $key2);
|
/PHP-7.0/ext/standard/tests/general_functions/ |
H A D | debug_zval_dump_o.phpt | 134 ["key2 "]=> 151 ["key2 "]=> 183 ["key2 "]=> 221 ["key2 "]=> 259 ["key2 "]=> 297 ["key2 "]=> 505 ["key2 "]=> 543 ["key2 "]=> 586 ["key2 "]=> 624 ["key2 "]=> [all …]
|
/PHP-7.0/tests/lang/ |
H A D | 031.phpt | 6 $arrayOuter = array("key1","key2"); 56 inloop 0 for key2 57 inloop 1 for key2 64 inloop 0 for key2 65 inloop 1 for key2 69 inloop 0 for key2 70 inloop 1 for key2
|
/PHP-7.0/ext/dba/tests/ |
H A D | dba_db4_011.phpt | 16 var_dump(dba_insert("key2", "Content String 2", $db_file)); 17 var_dump(dba_insert("key2", "Same key", $db_file)); 19 echo dba_fetch("key2", $db_file), "\n";
|
H A D | dba_handler.inc | 8 dba_insert("key2", "Content String 2", $db_file); 32 echo dba_fetch("key2", $db_file)."\n"; 34 dba_replace("key2", "Content 2 replaced", $db_file); 35 echo dba_fetch("key2", $db_file)."\n"; 59 dba_replace("key2", "Content 2 replaced 2nd time", $db_writer); 61 echo dba_fetch("key2", $db_writer)."\n";
|
H A D | dba015.phpt | 32 dba_insert("key2", "This is a test insert 2", $db_file2); 34 echo dba_fetch("key2", $db_file2), "\n"; 39 echo dba_fetch("key2", $db_file1), "\n"; 48 echo dba_fetch("key2", $db_file1), "\n";
|
H A D | dba_db4_018.phpt | 32 dba_insert("key2", "This is a test insert 2", $db_file2); 34 echo dba_fetch("key2", $db_file2), "\n"; 39 echo dba_fetch("key2", $db_file1), "\n"; 48 echo dba_fetch("key2", $db_file1), "\n";
|
H A D | dba004.phpt | 14 dba_insert("key2", "Content String 2", $db_file); 19 $b = dba_fetch("key2", $db_file);
|
H A D | dba_cdb.phpt | 27 ["key2"]=> 42 ["key2"]=>
|