Home
last modified time | relevance | path

Searched refs:c (Results 451 – 475 of 4053) sorted by relevance

1...<<11121314151617181920>>...163

/PHP-7.4/ext/standard/tests/serialize/
H A Dbug65481.phpt14 $c = new A;
19 $c->e[] = $e;
20 $e->e = $c->e;
23 return serialize(array(serialize($c)));
/PHP-7.4/ext/oci8/tests/
H A Dserverversion.phpt11 var_dump($c = oci_connect($user, $password, $dbase));
14 var_dump($c = oci_connect($user, $password));
17 $v = oci_server_version($c);
20 $v = ociserverversion($c);
H A Dcreate_type.inc3 if ($c) {
8 $statement = OCIParse($c,$ora_sql);
13 $statement = OCIParse($c,$ora_sql);
H A Dimp_res_4.phpt2 Oracle Database 12c Implicit Result Sets: oci_fetch
8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
10 die("skip expected output only valid when using Oracle Database 12c or greater");
14 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
33 oci8_test_sql_execute($c, $stmtarray);
38 $s = oci_parse($c, "begin imp_res_4_proc(); end;");
44 $s = oci_parse($c, "begin imp_res_4_proc(); end;");
59 oci8_test_sql_execute($c, $stmtarray);
H A Dbug51291_1.phpt12 $s = @oci_parse($c, "select ' from dual");
14 var_dump(oci_error($c));
16 var_dump(oci_error($c));
21 $s = @oci_parse($c, "select ' from dual");
23 var_dump(oci_error(), oci_error($c), oci_error($s));
30 $s = @oci_parse($c, 'select doesnotexist from dual');
40 $s = @oci_parse($c, 'select doesnotexist from dual');
51 $s = @oci_parse($c, 'select doesnotexist from dual');
55 $r = oci_rollback($c);
73 $s2 = oci_parse($c, 'select 1 from dual');
[all …]
H A Dbind_long_raw.phpt13 $stmt = oci_parse($c, "create table phptestlngraw( id number(10), fileimage long raw)");
16 $stmt = oci_parse ($c, "insert into phptestlngraw (id, fileimage) values (:id, :fileimage)");
23 oci_commit($c);
25 $stmt = oci_parse($c, "SELECT fileimage FROM phptestlngraw");
32 $stmt = oci_parse($c, "drop table phptestlngraw");
H A Dbind_raw.phpt13 $stmt = oci_parse($c, "create table phptestrawtable( id number(10), fileimage raw(1000))");
16 $stmt = oci_parse ($c, "insert into phptestrawtable (id, fileimage) values (:id, :fileimage)");
24 oci_commit($c);
26 $stmt = oci_parse($c, "SELECT fileimage FROM phptestrawtable");
33 $stmt = oci_parse($c, "drop table phptestrawtable");
H A Dbind_raw_2.phpt13 $stmt = oci_parse($c, "create table phptestrawtable( id number(10), fileimage raw(1000))");
16 $stmt = oci_parse ($c, "insert into phptestrawtable (id, fileimage) values (:id, :fileimage)");
24 oci_commit($c);
26 $stmt = oci_parse($c, "SELECT fileimage FROM phptestrawtable");
33 $stmt = oci_parse($c, "drop table phptestrawtable");
H A Dbug68298.phpt18 oci8_test_sql_execute($c, $stmtarray);
20 $s = oci_parse($c, "INSERT INTO BUG68298 VALUES (:INTVALUE)");
25 $s = oci_parse($c, "INSERT INTO BUG68298 VALUES (:INTVALUE)");
31 $s = oci_parse($c, "SELECT COL1 FROM BUG68298");
37 oci8_test_sql_execute($c, $stmtarray);
/PHP-7.4/Zend/tests/type_declarations/
H A Dtypes_in_ast.phpt8 assert(0 && ($a = function (int $a, ?int $b, int $c = null): ?int {
12 public ?int $c;
17 Warning: assert(): assert(0 && ($a = function (int $a, ?int $b, int $c = null): ?int {
21 public ?int $c;
/PHP-7.4/Zend/tests/
H A Dbug67633.phpt14 $c = 'c';
15 $array = ['a', 'b', $c];
35 string(1) "c"
H A Daccess_modifiers_012.phpt13 $c = new C;
14 call_user_func(array($c, 'none'));
15 call_user_func(array($c, 'prot'));
16 call_user_func(array($c, 'priv'));
H A Dbug48215_2.phpt10 class c extends b {
15 $c = new c();
21 #0 %s(%d): c->__construct()
/PHP-7.4/tests/basic/
H A D023.phpt7 c o o k i e=value; c o o k i e= v a l u e ;;c%20o+o k+i%20e=v;name="value","value",UEhQIQ==;UEhQIQ=…
16 ["c%20o+o_k+i%20e"]=>
/PHP-7.4/ext/intl/tests/
H A Dcalendar_isEquivalentTo_error.phpt13 $c = new IntlGregorianCalendar(NULL, 'pt_PT');
21 var_dump($c->isEquivalentTo(0));
26 var_dump($c->isEquivalentTo($c, 1));
31 var_dump($c->isEquivalentTo(1));
37 var_dump(intlcal_is_equivalent_to($c));
42 var_dump(intlcal_is_equivalent_to($c, 1));
47 var_dump(intlcal_is_equivalent_to(1, $c));
/PHP-7.4/ext/reflection/tests/
H A Dbug64936.phpt10 function strip_doc_comment($c)
12 if (!strlen($c) || $c === false) return $c;
13 return trim(substr($c, 3, -2));
H A Dbug66430.phpt29 echo "closure cl of c(alpha.bravo): ", get_class($reflectionC->getClosureThis()).PHP_EOL;
30 echo "scope cl of c(alpha.bravo): ", $reflectionC->getClosureScopeClass()->getName().PHP_EOL;
31 echo "reflection of c(alpha.bravo): ", $reflectionC->invoke().PHP_EOL;
40 closure cl of c(alpha.bravo): Alpha
41 scope cl of c(alpha.bravo): Alpha
42 reflection of c(alpha.bravo): Valid representation
H A Dbug52854.phpt7 $c = new ReflectionClass('Test');
10 var_dump($c->newInstance());
11 var_dump($c->newInstanceArgs(array()));
14 var_dump($c->newInstanceArgs(array(1)));
/PHP-7.4/ext/standard/tests/array/
H A D007.phpt7 $c = array(-1,1);
10 echo '$c='.var_export($c,TRUE).";\n";
16 'c'=>'done',
41 $c = array(
46 echo '$c='.var_export($c,TRUE).";\n";
81 $c = array(-1,1);
84 echo '$c='.var_export($c,TRUE).";\n";
159 $c=array (
210 $c=array (
219 ["c"]=>
[all …]
H A Darray_diff_assoc.phpt5 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red", "");
20 [c] => blue
29 [c] => blue
43 [c] => blue
/PHP-7.4/ext/sqlite3/tests/
H A Dsqlite3_bind_bug68849.phpt10 $db->exec("CREATE TABLE test (a INTEGER, b TEXT, c REAL);" .
31 $s = $db->prepare('SELECT * FROM test WHERE c = ?;');
44 ["c"]=>
52 ["c"]=>
60 ["c"]=>
68 ["c"]=>
/PHP-7.4/tests/lang/
H A DforeachLoop.001.phpt6 $a = array("a","b","c");
30 $a=array("a","b","c");
33 $a=array("a","b","c");
41 string(1) "c"
47 string(1) "c"
49 string(1) "c"
/PHP-7.4/ext/ctype/tests/
H A Dctype_punct_variation4.phpt7 /* Prototype : bool ctype_punct(mixed $c)
10 * Source code: ext/ctype/ctype.c
26 foreach($octal_values as $c) {
28 var_dump(ctype_punct($c));
34 foreach($hex_values as $c) {
36 var_dump(ctype_punct($c));
/PHP-7.4/ext/sodium/tests/
H A Dpwhash_scrypt.phpt16 $c = sodium_crypto_pwhash_scryptsalsa208sha256_str_verify($hash, $passwd);
17 var_dump($c);
19 $c = sodium_crypto_pwhash_scryptsalsa208sha256_str_verify($hash, 'passwd');
20 var_dump($c);
/PHP-7.4/ext/filter/tests/
H A D033.phpt17 validate_domain PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc<>() O…
18 validate_url http://a.b.c
22 string PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc() O…
23 stripped PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc() O…
25 special_chars PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc&#60;&#62;() O…
26 full_special_chars PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc&lt;&gt;() O…
27 unsafe_raw PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc<>() O…
28 email PHP 1 foo@bar.com httpa.b.c 1.2.3.4 123 123abc O…
29 url PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc<>() O…
52 magic_quotes PHP 1 foo@bar.com http://a.b.c 1.2.3.4 123 123abc<>() O…
[all …]

Completed in 36 milliseconds

1...<<11121314151617181920>>...163