Searched refs:get (Results 1 – 25 of 1085) sorted by relevance
12345678910>>...44
/PHP-5.4/ext/standard/tests/assert/ |
H A D | assert_basic4.phpt | 2 assert() - basic - test initial values using ini.get and assert_options 20 //Using ini.get; 21 echo "Initial values: ini.get(\"assert.active\") => [".ini_get("assert.active")."]\n"; 22 echo "Initial values: ini.get(\"assert.warning\") => [".ini_get("assert.warning")."]\n"; 23 echo "Initial values: ini.get(\"assert.bail\") => [".ini_get("assert.bail")."]\n"; 25 echo "Initial values: ini.get(\"assert.callback\") => [".ini_get("assert.callback")."]\n\n"; 33 Initial values: ini.get("assert.active") => [0] 34 Initial values: ini.get("assert.warning") => [0] 35 Initial values: ini.get("assert.bail") => [0] 36 Initial values: ini.get("assert.quiet_eval") => [0] [all …]
|
H A D | assert_variation.phpt | 39 echo "ini.get(\"assert.callback\") => [".ini_get("assert.callback")."]\n"; 46 echo "ini.get(\"assert.callback\") => [".ini_get("assert.callback")."]\n"; 54 echo "ini.get(\"assert.callback\") => [".ini_get("assert.callback")."]\n"; 61 echo "ini.get(\"assert.callback\") => [".ini_get("assert.callback")."]\n\n"; 69 echo "ini.get(\"assert.callback\") => [".ini_get("assert.callback")."]\n\n"; 75 Initial values: ini.get("assert.callback") => [f1] 82 ini.get("assert.callback") => [f2] 89 ini.get("assert.callback") => [f2] 96 ini.get("assert.callback") => [f2] 107 ini.get("assert.callback") => [f2] [all …]
|
/PHP-5.4/ext/intl/tests/ |
H A D | resourcebundle_null_mandatory_args_variant2.phpt | 14 $c = $r->get('calendar')->get('gregorian')->get('DateTimePatterns')->get(0); 19 $c = $r->get('calendar')->get('gregorian')->get('DateTimePatterns')->get(0);
|
H A D | resourcebundle_null_mandatory_args.phpt | 14 $c = $r->get('calendar')->get('gregorian')->get('DateTimePatterns')->get(0); 19 $c = $r->get('calendar')->get('gregorian')->get('DateTimePatterns')->get(0);
|
H A D | resourcebundle_internal.phpt | 8 var_dump($b->get('Countries')->get('DE')); 11 var_dump($b->get('ICUVersion') !== NULL); 14 var_dump($b->get('cldrVersion') !== NULL);
|
H A D | collator_get_set_strength.phpt | 2 get/set_strength() 9 * Try to set/get collation strength. 13 * Set given collation strength, then get it back
|
/PHP-5.4/ext/spl/tests/ |
H A D | dit_006.phpt | 14 echo "With seek(2) we get $n\n"; 22 echo "With seek(0) we get $m\n"; 31 echo "Without seek we get $o\n"; 44 With seek(2) we get %d 45 With seek(0) we get %d 46 Without seek we get %d
|
/PHP-5.4/tests/basic/ |
H A D | 003.phpt | 10 echo "post-a=({$_POST['a']}) get-b=({$_GET['b']}) get-c=({$_GET['c']})"?> 12 post-a=(Hello World) get-b=(Hello Again World) get-c=(Hi Mom)
|
/PHP-5.4/ext/snmp/tests/ |
H A D | snmp-object-errno-errstr.phpt | 21 var_dump(@$session->get('.1.3.6.1.2.1.1.1.0')); 29 var_dump(@$session->get('.1.3.6.1.2.1.1.1.0')); 36 var_dump(@$session->get('.1.3.6.1.2.1.1.1.110')); 44 var_dump(@$session->get('.1.3.6.1.2.1.1.1.0')); 53 var_dump(@$session->get('.1.3.6.1.2..1.1.1.0')); 83 $oldvalue1 = $session->get($oid1); 85 $oldvalue2 = $session->get($oid2); 91 var_dump(($session->get($oid1) === $newvalue1)); 92 var_dump(($session->get($oid2) === $newvalue2)); 97 var_dump(($session->get($oid1) === $oldvalue1)); [all …]
|
H A D | snmp-object.phpt | 22 var_dump($session->get('.1.3.6.1.2.1.1.1.0')); 29 var_dump($session->get('.1.3.6.1.2.1.1.1.0')); 36 $result = $session->get($orig, TRUE); 98 var_dump($session->get('.1.3.6.1.2.1.1.1.0')); 105 var_dump($session->get('.1.3.6.1.2.1.1.1.0')); 112 var_dump($session->get('.1.3.6.1.2.1.1.1.0')); 121 $oldvalue1 = $session->get($oid1); 126 var_dump(($session->get($oid1) === $newvalue1)); 129 var_dump(($session->get($oid1) === $oldvalue1)); 137 $oldvalue2 = $session->get($oid2); [all …]
|
H A D | snmp-object-error.phpt | 41 var_dump($session->get('.1.3.6.1.2.1.1.1..0')); 48 var_dump($session->get('.1.3.6.1.2.1.1.1..0')); 62 var_dump($session->get('.1.3.6.1.2.1.1.1.0')); 68 var_dump($session->get()); 84 Warning: SNMP::get(): Invalid object identifier: .1.3.6.1.2.1.1.1..0 in %s on line %d 99 Warning: SNMP::get(): Invalid or uninitialized SNMP object in %s on line %d 109 Warning: SNMP::get() expects at least 1 parameter, 0 given in %s on line %d
|
/PHP-5.4/Zend/tests/ |
H A D | bug40621.phpt | 8 function get() { 13 Foo::get(); 18 Strict Standards: Non-static method Foo::get() should not be called statically in %s on line %d
|
H A D | bug54910.phpt | 7 if (stripos($method, 'get') === 0) { 8 return $this->get(); 13 protected function get() {
|
H A D | bug30889.phpt | 19 print "get $name (returns ".$this->values[$name].")\n"; 28 get a (returns 0) 30 get a (returns 1)
|
H A D | 024.phpt | 40 Notice: Trying to get property of non-object in %s on line %d 43 Notice: Trying to get property of non-object in %s on line %d 48 Notice: Trying to get property of non-object in %s on line %d 50 Notice: Trying to get property of non-object in %s on line %d
|
/PHP-5.4/ext/soap/tests/bugs/ |
H A D | bug42151.phpt | 12 echo 'I never get executed.' . "\n"; 17 echo 'I don\'t get executed either.' . "\n"; 32 I don't get executed either.
|
/PHP-5.4/ext/date/tests/ |
H A D | DateTimeZone_verify.phpt | 12 echo "..and get names of all its methods\n"; 16 echo "..and get names of all its class constants\n"; 28 ..and get names of all its methods 80 ..and get names of all its class constants
|
/PHP-5.4/ext/openssl/tests/ |
H A D | 021.phpt | 51 Warning: openssl_csr_sign(): cannot get cert from parameter 2 in %s on line %d 54 Warning: openssl_csr_sign(): cannot get private key from parameter 3 in %s on line %d 63 Warning: openssl_csr_sign(): cannot get CSR from parameter 1 in %s on line %d 66 Warning: openssl_csr_sign(): cannot get CSR from parameter 1 in %s on line %d 69 Warning: openssl_csr_sign(): cannot get cert from parameter 2 in %s on line %d 74 Warning: openssl_csr_sign(): cannot get private key from parameter 3 in %s on line %d
|
H A D | 008.phpt | 24 die("failed to get a temporary filename!"); 51 Warning: openssl_x509_export(): cannot get cert from parameter 1 in %s on line %d 55 Warning: openssl_x509_export(): cannot get cert from parameter 1 in %s on line %d 61 Warning: openssl_x509_export_to_file(): cannot get cert from parameter 1 in %s on line %d 65 Warning: openssl_x509_export_to_file(): cannot get cert from parameter 1 in %s on line %d
|
H A D | bug25614.phpt | 2 openssl: get public key from generated private key 14 Warning: openssl_pkey_get_public(): Don't know how to get public key from this private key %s
|
H A D | 024.phpt | 11 die("failed to get a temporary filename!"); 15 die("failed to get a temporary filename!"); 46 Warning: openssl_pkcs7_decrypt(): unable to get private key in %s on line %d 61 Warning: openssl_pkcs7_decrypt(): unable to get private key in %s on line %d
|
/PHP-5.4/ext/mysqli/tests/ |
H A D | mysqli_reconnect.phpt | 26 printf("[002] Cannot get full processlist, [%d] %s\n", 47 printf("[006] Cannot get wait_timeout, [%d] %s\n", 59 printf("[008] Cannot get full processlist, [%d] %s\n", 75 printf("[011] Cannot get database name, [%d] %s\n", 79 printf("[012] Cannot get database name, [%d] %s\n", 96 printf("[015] Cannot get full processlist, [%d] %s\n", 113 printf("[018] Cannot get database name, [%d] %s\n", 117 printf("[019] Cannot get database name, [%d] %s\n",
|
/PHP-5.4/tests/lang/ |
H A D | short_tags.003.phpt | 7 <?='this should get echoed'?> 25 this should get echoed
|
/PHP-5.4/tests/classes/ |
H A D | factory_and_singleton_001.phpt | 35 public function get() { 61 var_dump($x->get()); 62 var_dump($y->get()); 68 var_dump($y->get());
|
H A D | factory_and_singleton_002.phpt | 35 public function get() { 61 var_dump($x->get()); 62 var_dump($y->get()); 68 var_dump($y->get());
|
Completed in 43 milliseconds
12345678910>>...44