Home
last modified time | relevance | path

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

1...<<11121314151617181920>>...187

/PHP-5.3/ext/filter/
H A Dsanitizing_filters.c113 int i, c; in php_filter_strip() local
122 c = 0; in php_filter_strip()
128 buf[c] = str[i]; in php_filter_strip()
129 ++c; in php_filter_strip()
133 buf[c] = '\0'; in php_filter_strip()
136 Z_STRLEN_P(value) = c; in php_filter_strip()
159 int i, c; in filter_map_apply() local
163 c = 0; in filter_map_apply()
166 buf[c] = str[i]; in filter_map_apply()
167 ++c; in filter_map_apply()
[all …]
/PHP-5.3/ext/mbstring/libmbfl/tests/
H A Dconv_kana.c110 const int c = fgetc(stdin); in main() local
112 if (c == EOF) { in main()
115 } else if (c == 10) { in main()
121 } else if (c == 13) { in main()
136 dev.buffer[dev.pos++] = (unsigned char)c; in main()
/PHP-5.3/tests/classes/
H A Dinheritance.phpt22 public $c;
27 echo "c = ".$this->c."\n";
43 $bar1->c = 12;
55 c = 12
H A Diterators_002.phpt47 class c implements IteratorAggregate {
60 $t = new c();
74 c::getIterator
80 c::getIterator
91 c::getIterator
102 c::getIterator
112 c::__destruct
H A Dproperty_recreate_private.phpt41 $c = new C;
42 $c->unsetPrivate();
43 $c->setPrivate();
44 var_dump($c);
47 $c = new C;
48 $c->unsetPrivate();
49 $c->p = 'this will fail';
50 var_dump($c);
/PHP-5.3/ext/standard/tests/array/
H A Darray_diff_variation8.phpt8 * Source code: ext/standard/array.c
17 $array = array('a' => '1', 'b' => '2', 'c' => '3');
79 ["c"]=>
90 ["c"]=>
101 ["c"]=>
116 ["c"]=>
135 ["c"]=>
154 ["c"]=>
173 ["c"]=>
190 ["c"]=>
H A D006.phpt10 $c = array("a" => "foo", "b" => "bar", "c" => "fubar");
22 echo array_pop($c), "\n";
23 var_dump($c);
H A Darray_chunk_variation22.phpt5 $array = array ("b" => 1, "c" => 2);
19 ["c"]=>
48 ["c"]=>
80 ["c"]=>
H A Dbug24198.phpt5 $c = array('a' => 'aa','b' => 'bb');
7 var_dump(array_merge_recursive($c, $c));
H A Darray_merge_recursive_variation9.phpt7 * Source code: ext/standard/array.c
21 $arr2 = array("b" => 2, "c" => 4);
27 $arr2 = array("b" => 2.2, "c" => 3.3);
33 $arr2 = array("b" => "world", "c" => "string");
64 ["c"]=>
78 ["c"]=>
92 ["c"]=>
H A Darray_diff_assoc_variation7.phpt9 * Source code: ext/standard/array.c
22 $arr1 = array('a', 'b', 'c', $a);
23 $arr2 = array('a' => 1, 'b' => 2, 'c' => 3, &$a);
58 string(1) "c"
67 ["c"]=>
77 string(1) "c"
86 ["c"]=>
/PHP-5.3/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_ident.h45 int (*filter_function)(int c, mbfl_identify_filter *filter);
56 int (*filter_function)(int c, mbfl_identify_filter *filter);
69 MBFLAPI extern int mbfl_filt_ident_false(int c, mbfl_identify_filter *filter);
70 MBFLAPI extern int mbfl_filt_ident_true(int c, mbfl_identify_filter *filter);
/PHP-5.3/ext/json/
H A DREADME29 $arr = array("a"=>1,"b"=>2,"c"=>3,"d"=>4,"e"=>5);
32 ---> {"a":1,"b":2,"c":3,"d":4,"e":5}
34 $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
42 ["c"]=>
50 $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
58 ["c"]=>
/PHP-5.3/ext/phar/tests/
H A Dopen_for_write_existing_c.phpt20 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
23 $fp = fopen($pname . '/b/c.php', 'wb');
26 include $pname . '/b/c.php';
33 Warning: fopen(phar://%sopen_for_write_existing_c.phar.php/b/c.php): failed to open stream: phar er…
38 This is b/c
H A Dopen_for_write_existing_c_5_2.phpt18 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
21 $fp = fopen($pname . '/b/c.php', 'wb');
24 include $pname . '/b/c.php';
31 Warning: fopen(phar://%sopen_for_write_existing_c_5_2.phar.php/b/c.php): failed to open stream: pha…
36 This is b/c
/PHP-5.3/ext/standard/tests/serialize/
H A Dserialization_objects_003.phpt9 * Source code: ext/standard/var.c
14 * Source code: ext/standard/var.c
25 $this->c = "string";
35 var $a, $b, $c;
57 …s:1:"a";i:10;s:1:"b";d:12.2219999999999995310417943983338773250579833984375;s:1:"c";s:6:"string";}"
63 ["c"]=>
/PHP-5.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_jis.h44 int mbfl_filt_conv_jis_wchar(int c, mbfl_convert_filter *filter);
45 int mbfl_filt_conv_wchar_jis(int c, mbfl_convert_filter *filter);
46 int mbfl_filt_conv_wchar_2022jp(int c, mbfl_convert_filter *filter);
/PHP-5.3/ext/mbstring/oniguruma/enc/
H A Dsjis.c98 int c, i, len; in sjis_mbc_to_code() local
102 c = *p++; in sjis_mbc_to_code()
103 n = c; in sjis_mbc_to_code()
108 c = *p++; in sjis_mbc_to_code()
109 n <<= 8; n += c; in sjis_mbc_to_code()
208 const UChar c = *s; in sjis_is_allowed_reverse_match() local
209 return (SJIS_ISMB_TRAIL(c) ? FALSE : TRUE); in sjis_is_allowed_reverse_match()
/PHP-5.3/ext/standard/tests/strings/
H A Dstripslashes_basic.phpt7 * Source code: ext/standard/string.c
19 'c:\php\stripslashes', // string with backslashes
20 'c:\\php\\stripslashes', // string with double backslashes
47 string(21) "c:\\php\\stripslashes"
49 string(19) "c:\php\stripslashes"
51 string(21) "c:\\php\\stripslashes"
53 string(19) "c:\php\stripslashes"
/PHP-5.3/ext/ctype/tests/
H A Dctype_punct_variation2.phpt7 /* Prototype : bool ctype_punct(mixed $c)
10 * Source code: ext/ctype/ctype.c
22 for ($c = 1; $c < 256; $c++) {
23 if (ctype_punct($c)) {
24 echo "character code $c is punctuation\n";
H A Dctype_xdigit_variation2.phpt7 /* Prototype : bool ctype_xdigit(mixed $c)
9 * Source code: ext/ctype/ctype.c
21 for($c = 1; $c < 256; $c++) {
22 if (ctype_xdigit($c)) {
23 echo "character code $c is a hexadecimal 'digit'\n";
/PHP-5.3/ext/oci8/tests/
H A Drefcur_prefetch_4.phpt41 oci8_test_sql_execute($c, $stmtarray);
45 if (!($s = oci_parse($c, $insert_sql))) {
61 $s1 = oci_parse($c,$sql1);
62 $cur1 = oci_new_cursor($c);
71 $s2 = oci_parse($c,$sql2);
84 $cur1 = oci_new_cursor($c);
106 $cur1 = oci_new_cursor($c);
128 function print_roundtrips($c) {
130 a.statistic#=c.statistic# and c.name='SQL*Net roundtrips to/from client'";
131 $s = oci_parse($c,$sql_stmt);
[all …]
H A Dconnect.inc6 $c = @oci_connect($user, $password, $dbase);
9 $c = @oci_connect($user, $password);
12 if (!$c) {
/PHP-5.3/ext/mbstring/tests/
H A Doverload02.phpt25 foreach($ngchars as $c) {
26 $c = mb_convert_encoding($c, 'Shift_JIS');
27 …$replaced = mb_convert_encoding(ereg_replace($c, '!!', $converted_str), mb_internal_encoding(), 'S…
/PHP-5.3/ext/spl/tests/
H A DarrayObject___construct_basic3.phpt14 $c = new C;
15 $ao = new ArrayObject($c, ArrayObject::STD_PROP_LIST);
16 testAccess($c, $ao);
19 $c = new C;
20 $ao = new MyArrayObject($c, ArrayObject::STD_PROP_LIST);
21 testAccess($c, $ao);
23 function testAccess($c, $ao) {
46 var_dump($ao, $c);

Completed in 27 milliseconds

1...<<11121314151617181920>>...187