/PHP-7.1/ext/dba/tests/ |
H A D | dba_split.phpt | 10 var_dump(dba_key_split("key1", "name")); 15 var_dump(dba_key_split("[key1")); 16 var_dump(dba_key_split("[key1]")); 17 var_dump(dba_key_split("key1]")); 18 var_dump(dba_key_split("[key1]name1")); 51 string(5) "[key1" 55 string(4) "key1" 63 string(5) "key1]" 67 string(4) "key1" 73 string(4) "key1" [all …]
|
H A D | dba008.phpt | 15 dba_insert("key1", '"', $db_file); 16 var_dump(dba_fetch("key1", $db_file)); 18 var_dump(dba_fetch("key1", $db_file)); 19 dba_replace("key1", '\"', $db_file); 20 var_dump(dba_fetch("key1", $db_file)); 22 var_dump(dba_fetch("key1", $db_file));
|
H A D | dba_cdb_001.phpt | 18 var_dump(dba_insert("key1", "Content String 1", $db_file)); 19 var_dump(dba_replace("key1", "New Content String", $db_file)); 20 var_dump(dba_fetch("key1", $db_file)); 22 var_dump(dba_delete("key1", $db_file)); 36 dba_insert("key1", "Content String 1", $db_file); 46 dba_insert("key1", "Content String 1", $db_file); 56 echo dba_fetch("key1", $db_file), "\n";
|
H A D | dba003.phpt | 13 dba_insert("key1", "This is a test insert", $db_file); 14 dba_replace("key1", "This is the replacement text", $db_file); 15 $a = dba_fetch("key1", $db_file);
|
H A D | dba015.phpt | 18 dba_insert("key1", "This is a test insert 1", $db_file1); 19 echo dba_fetch("key1", $db_file1), "\n"; 33 echo dba_fetch("key1", $db_file2), "\n"; 38 echo dba_fetch("key1", $db_file1), "\n"; 47 echo dba_fetch("key1", $db_file1), "\n";
|
H A D | dba_db4_016.phpt | 19 var_dump(dba_insert("key1", "This is a test insert", $db_file)); 20 echo dba_fetch("key1", $db_file), "\n"; 33 var_dump(dba_insert("key1", "second open test", $db_file)); 35 echo dba_fetch("key1", $db_file), "\n";
|
H A D | dba_db4_018.phpt | 18 dba_insert("key1", "This is a test insert 1", $db_file1); 19 echo dba_fetch("key1", $db_file1), "\n"; 33 echo dba_fetch("key1", $db_file2), "\n"; 38 echo dba_fetch("key1", $db_file1), "\n"; 47 echo dba_fetch("key1", $db_file1), "\n";
|
H A D | dba002.phpt | 13 dba_insert("key1", "This is a test insert", $db_file); 14 echo dba_fetch("key1", $db_file);
|
/PHP-7.1/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 | bug42850.phpt | 7 $data = array ('key1' => 'val1', array('key2' => 'val2')); 27 ["key1"]=> 36 ["key1"]=> 45 ["key1"]=> 51 ["key1"]=>
|
H A D | bug42177.phpt | 6 $a1 = array( 'key1' => 1, 'key3' => 2 ); 13 $a2 = array( 'key1' => 1, 'key3' => 2 ); 19 $a2 = array( 'key1' => &$a1 ); 27 $a2 = array( 'key1' => $a1, $x, $y );
|
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_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_merge_variation9.phpt | 22 $arr2 = array('key1' => 'val1', 'key2' => 'val2', 'key3' => 'val3'); 47 ["key1"]=> 55 ["key1"]=> 77 ["key1"]=> 85 ["key1"]=>
|
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_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_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;
|
/PHP-7.1/tests/lang/ |
H A D | 031.phpt | 6 $arrayOuter = array("key1","key2"); 54 inloop 0 for key1 55 inloop 1 for key1 59 inloop 0 for key1 60 inloop 1 for key1 62 inloop 0 for key1 63 inloop 1 for key1 67 inloop 0 for key1 68 inloop 1 for key1
|
/PHP-7.1/ext/standard/tests/general_functions/ |
H A D | debug_zval_dump_o.phpt | 132 ["key1"]=> 149 ["key1"]=> 181 ["key1"]=> 219 ["key1"]=> 257 ["key1"]=> 295 ["key1"]=> 503 ["key1"]=> 541 ["key1"]=> 584 ["key1"]=> 622 ["key1"]=> [all …]
|
/PHP-7.1/ext/openssl/tests/ |
H A D | ecc.phpt | 12 $key1 = openssl_pkey_new($args); 13 var_dump($key1); 23 $d1 = openssl_pkey_get_details($key1); 54 $csr = openssl_csr_new($dn, $key1, $args); 62 $x509 = openssl_csr_sign($csr, null, $key1, 365, $args); 66 var_dump(openssl_x509_check_private_key($x509, $key1));
|