Home
last modified time | relevance | path

Searched refs:c (Results 326 – 350 of 4053) sorted by relevance

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

/PHP-7.4/Zend/tests/varSyntax/
H A DconstClassMemberAccess.phpt7 const A = ['a' => ['b' => 'c']];
20 string(1) "c"
25 string(1) "c"
27 string(1) "c"
/PHP-7.4/Zend/tests/
H A Dbug67169.phpt8 $array[] = 'c';
14 $array[] = 'c';
21 string(1) "c"
25 string(1) "c"
H A Ddebug_backtrace_limit.phpt10 c();
13 function c() {
29 [function] => c
43 [function] => c
68 [function] => c
104 [function] => c
H A Dbug79784.phpt9 $a[$c] = 'x' ;
11 $a[$c] .= 'x' ;
13 $a[$c][$c] = 'x' ;
H A Dbug73987.phpt7 public function example($a, $b, $c);
10 public function example($a, $b = null, $c = null) { } // compatible with I::example
13 public function example($a, $b, $c = null) { } // compatible with I::example
18 …al error: Declaration of B::example($a, $b, $c = NULL) must be compatible with A::example($a, $b =…
/PHP-7.4/ext/intl/tests/
H A Duconverter_setSourceEncoding.phpt11 $c = new UConverter('latin1', 'ascii');
12 var_dump($c->getSourceEncoding());
13 $c->setSourceEncoding('utf-7');
14 var_dump($c->getSourceEncoding());
/PHP-7.4/ext/spl/tests/
H A Dbug54323.phpt10 $c = new C;
11 $ao = new MyArrayObject($c);
12 testAccess($c, $ao);
13 function testAccess($c, $ao) {
17 var_dump($c->prop, $ao['prop']);
H A Drecursive_tree_iterator_005.phpt19 "c",
23 "c",
53 string(7) " | \-c"
56 string(7) " \-c"
105 string(1) "c"
106 string(7) " | \-c"
114 string(1) "c"
115 string(7) " \-c"
/PHP-7.4/ext/gd/libgd/
H A Dgd2time.c18 int c; in main() local
28 c = atoi (argv[2]); in main()
34 printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h); in main()
37 for (i = 0; i < c; i++) in main()
57 printf ("%d seconds to extract (& destroy) %d times\n", t0, c); in main()
/PHP-7.4/ext/pdo/
H A Dconfig.m412 PHP_NEW_EXTENSION(pdo, pdo.c pdo_dbh.c pdo_stmt.c pdo_sql_parser.c pdo_sqlstate.c, $ext_shared)
/PHP-7.4/ext/simplexml/tests/
H A Dbug62639.phpt18 <c>
20 </c>
27 foreach ($a1->b->c->children() as $key => $value) {
35 <c><value attr="Some Attr">Some Value</value></c>
42 foreach ($a2->b->c->children() as $key => $value) {
/PHP-7.4/tests/lang/
H A Dengine_assignExecutionOrder_006.phpt38 $c = array(array(2));
40 $a[i1()][i2()] = ($b[i3()][i4()] = $c[i5()][i6()]);
43 var_dump($c);
45 $a[i1()][i2()] = $b[i3()][i4()] = -$c[i5()][i6()];
48 var_dump($c);
50 $a[i1()][i2()] = -($b[i3()][i4()] = +($c[i5()][i6()]));
53 var_dump($c);
/PHP-7.4/ext/ctype/tests/
H A Dctype_digit_variation4.phpt7 /* Prototype : bool ctype_digit(mixed $c)
9 * Source code: ext/ctype/ctype.c
13 * Pass octal and hexadecimal values as $c argument to ctype_digit() to test behaviour
25 foreach($octal_values as $c) {
27 var_dump(ctype_digit($c));
33 foreach($hex_values as $c) {
35 var_dump(ctype_digit($c));
/PHP-7.4/ext/oci8/tests/
H A Dlob_017.phpt13 $c = oci_pconnect($user, $password, $dbase);
16 $statement = oci_parse($c, $drop);
20 $statement = oci_parse($c, $create);
24 $statement = oci_parse($c, $init);
28 $statement = oci_parse($c, $select);
38 oci_commit($c);
41 $statement = oci_parse($c, $select);
51 $statement = oci_parse($c, $drop);
H A Ddb_op_1.phpt11 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
13 die("skip expected output only valid when using Oracle Database 12c or greater");
17 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
31 function dq($c, $q)
33 $s = oci_parse($c, $q);
38 oci_set_db_operation($c, "db_op_1");
39 dq($c, 'select /*+ MONITOR */ * from dual');
41 dq($c, 'select dbop_name from v$sql_monitor where dbop_name is not null order by dbop_exec_id desc'…
H A Ddrcp_scope3.phpt21 $c = oci_new_connect($user,$password,$dbase);
22 @drcp_drop_table($c);
23 drcp_create_table($c);
35 var_dump($c = oci_pconnect($user,$password,$dbase));
36 drcp_update_table($c);
43 var_dump($c = oci_pconnect($user,$password,$dbase));
44 drcp_select_value($c);
47 drcp_drop_table($c);
48 oci_close($c);
H A Ddrcp_scope4.phpt24 $c = oci_new_connect($user,$password,$dbase);
25 @drcp_drop_table($c);
26 drcp_create_table($c);
38 var_dump($c = oci_pconnect($user,$password,$dbase));
39 drcp_update_table($c);
46 var_dump($c = oci_pconnect($user,$password,$dbase));
47 drcp_select_value($c);
50 drcp_drop_table($c);
51 oci_close($c);
H A Dlob_022.phpt14 $statement = oci_parse($c, $drop);
18 $statement = oci_parse($c, $create);
22 $statement = oci_parse($c, $init);
23 $clob = oci_new_descriptor($c, OCI_D_LOB);
32 oci_commit($c);
35 $statement = oci_parse($c, $init);
36 $clob = oci_new_descriptor($c, OCI_D_LOB);
43 oci_commit($c);
47 $statement = oci_parse ($c, $query);
56 $statement = oci_parse ($c, $query);
[all …]
/PHP-7.4/ext/phar/tests/
H A D019c.phpt20 $files['b/c/d'] = 'c';
21 $files['bad/c'] = 'd';
64 string(4) "/b/c"
66 string(14) "phar://hio/b/c"
67 string(6) "/b/c/d"
69 string(1) "c"
73 string(6) "/bad/c"
/PHP-7.4/ext/phar/tests/zip/
H A Dphar_oo_compressallgz.phpt16 $phar['c'] = 'c';
22 var_dump(file_get_contents($pname . '/c'));
23 var_dump($phar['c']->isCompressed());
32 var_dump(file_get_contents($pname . '/c'));
34 var_dump($phar['c']->isCompressed(Phar::GZ));
47 string(1) "c"
55 string(1) "c"
/PHP-7.4/ext/standard/
H A Duuencode.c60 #define PHP_UU_ENC(c) ((c) ? ((c) & 077) + ' ' : '`') argument
61 #define PHP_UU_ENC_C2(c) PHP_UU_ENC(((*(c) << 4) & 060) | ((*((c) + 1) >> 4) & 017)) argument
62 #define PHP_UU_ENC_C3(c) PHP_UU_ENC(((*(c + 1) << 2) & 074) | ((*((c) + 2) >> 6) & 03)) argument
64 #define PHP_UU_DEC(c) (((c) - ' ') & 077) argument
/PHP-7.4/ext/pcntl/tests/
H A Dbug72154.phpt9 $c = &$b;
10 $var5 = pcntl_wait($b,0,$c);
15 $c = &$b;
16 $var5 = pcntl_waitpid(0,$b,0,$c);
/PHP-7.4/ext/reflection/tests/
H A Dtraits005.phpt12 for ($c = "C1"; $c <= "C4"; $c++) {
13 echo "class $c:\n";
14 $r = new ReflectionClass($c);
/PHP-7.4/ext/curl/tests/
H A Dbug64267.phpt13 $c = curl_init("http://google.com");
15 var_dump(curl_setopt_array($c, [
24 var_dump(curl_setopt_array($c, [
29 curl_exec($c);
30 var_dump(curl_getinfo($c, CURLINFO_RESPONSE_CODE));
/PHP-7.4/ext/filter/
H A Dconfig.m48 …PHP_NEW_EXTENSION(filter, filter.c sanitizing_filters.c logical_filters.c callback_filter.c, $ext_…

Completed in 38 milliseconds

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