Home
last modified time | relevance | path

Searched refs:count (Results 1 – 25 of 1156) sorted by relevance

12345678910>>...47

/PHP-7.3/ext/spl/tests/
H A DarrayObject_count_basic1.phpt2 SPL: ArrayObject::count() and ArrayIterator::count() basic functionality.
7 function count() {
15 var_dump(count($c), count($ao));
19 var_dump(count($c), count($ao));
23 var_dump(count($c), count($ao));
27 var_dump($c->count(), $ao->count());
35 function count() {
43 var_dump(count($c), count($ao));
47 var_dump(count($c), count($ao));
51 var_dump(count($c), count($ao));
[all …]
H A Dcountable_count_variation1.phpt7 function count() {
12 function count() {
18 function count() {
24 function count() {
30 function count() {
37 var_dump(count(new returnNull));
40 var_dump(count(new returnString));
43 var_dump(count(new returnObject));
46 var_dump(count(new returnArray));
50 echo count(new throwException);
[all …]
H A Dspl_heap_count_basic.phpt2 SPL: SplHeap, Test spl_heap_object_count_elements (spl_heap.c:490) for returning count() failure fo…
16 public function count() // override count to force failure
18 throw new Exception('Cause count to fail');
19 return parent::count();
27 count($heap);// refers to MyHeap->count() method
34 Exception: Cause count to fail
/PHP-7.3/tests/lang/
H A Dbug19943.phpt6 for ($count = 0; $count < 10; $count++) {
7 $ar[$count] = "$count";
8 @$ar[$count]['idx'] = "$count";
11 for ($count = 0; $count < 10; $count++) {
12 echo $ar[$count]." -- ".@$ar[$count]['idx']."\n";
/PHP-7.3/ext/standard/tests/array/
H A Dcount_recursive.phpt2 Test count() function
86 public function count() {
101 var_dump(count($arr_resource));
122 var_dump( count(array(), "") );
222 For mode '0' count is => int(3)
223 For mode '1' count is => int(9)
224 For mode '0' count is => int(3)
225 For mode '1' count is => int(9)
228 For mode '2' count is => int(3)
230 For mode '' count is => int(3)
[all …]
H A Dcount_error.phpt2 Test count() function : error conditions - pass incorrect number of args
5 /* Prototype : int count(mixed var [, int mode])
11 * Pass incorrect number of arguments to count() to test behaviour
14 echo "*** Testing count() : error conditions ***\n";
17 echo "\n-- Testing count() function with Zero arguments --\n";
18 var_dump( count() );
20 //Test count with one more than the expected number of arguments
25 var_dump( count($var, $mode, $extra_arg) );
30 *** Testing count() : error conditions ***
32 -- Testing count() function with Zero arguments --
[all …]
H A Dcount_invalid.phpt6 $result = count(null);
9 $result = count("string");
12 $result = count(123);
15 $result = count(true);
18 $result = count(false);
21 $result = count((object) []);
26 Warning: count(): Parameter must be an array or an object that implements Countable in %s on line %d
29 Warning: count(): Parameter must be an array or an object that implements Countable in %s on line %d
32 Warning: count(): Parameter must be an array or an object that implements Countable in %s on line %d
35 Warning: count(): Parameter must be an array or an object that implements Countable in %s on line %d
[all …]
H A Dcount_basic.phpt2 Test count() function : basic functionality
5 /* Prototype : int count(mixed $var [, int $mode])
11 * Test basic functionality of count() using an array as $var argument
15 echo "*** Testing count() : basic functionality ***\n";
19 var_dump(count($array));
24 var_dump(count($array_multi, COUNT_NORMAL));
26 var_dump(count($array_multi, 0));
28 var_dump(count($array_multi, COUNT_RECURSIVE));
30 var_dump(count($array_multi, 1));
35 *** Testing count() : basic functionality ***
/PHP-7.3/ext/ldap/tests/
H A Dldap_search_basic.phpt35 ["count"]=>
41 ["count"]=>
50 ["count"]=>
59 ["count"]=>
68 ["count"]=>
77 ["count"]=>
86 ["count"]=>
93 ["count"]=>
102 ["count"]=>
145 ["count"]=>
[all …]
H A Dldap_search_variation6.phpt54 ["count"]=>
60 ["count"]=>
69 ["count"]=>
78 ["count"]=>
112 ["count"]=>
164 ["count"]=>
207 ["count"]=>
221 ["count"]=>
225 ["count"]=>
235 ["count"]=>
[all …]
H A Dldap_search_overrides.phpt48 ["count"]=>
54 ["count"]=>
63 ["count"]=>
72 ["count"]=>
81 ["count"]=>
90 ["count"]=>
99 ["count"]=>
106 ["count"]=>
115 ["count"]=>
158 ["count"]=>
[all …]
H A Dldap_list_basic.phpt34 ["count"]=>
40 ["count"]=>
49 ["count"]=>
58 ["count"]=>
67 ["count"]=>
76 ["count"]=>
85 ["count"]=>
92 ["count"]=>
101 ["count"]=>
110 ["count"]=>
[all …]
H A Dbug48441.phpt44 ["count"]=>
50 ["count"]=>
57 ["count"]=>
73 ["count"]=>
89 ["count"]=>
99 ["count"]=>
110 ["count"]=>
118 ["count"]=>
131 ["count"]=>
147 ["count"]=>
[all …]
H A Dldap_sort_basic.phpt57 ["count"]=>
63 ["count"]=>
72 ["count"]=>
79 ["count"]=>
88 ["count"]=>
97 ["count"]=>
104 ["count"]=>
129 ["count"]=>
154 ["count"]=>
170 ["count"]=>
[all …]
H A Dldap_sort_variation.phpt57 ["count"]=>
63 ["count"]=>
70 ["count"]=>
79 ["count"]=>
88 ["count"]=>
95 ["count"]=>
104 ["count"]=>
120 ["count"]=>
145 ["count"]=>
170 ["count"]=>
[all …]
/PHP-7.3/ext/bcmath/libbcmath/src/
H A Dcompare.c53 int count; local
87 count = n1->n_len + MIN (n1->n_scale, n2->n_scale);
91 while ((count > 0) && (*n1ptr == *n2ptr))
95 count--;
97 if (ignore_last && count == 1 && n1->n_scale == n2->n_scale)
99 if (count != 0)
124 for (count = n1->n_scale-n2->n_scale; count>0; count--)
136 for (count = n2->n_scale-n1->n_scale; count>0; count--)
H A Ddoaddsub.c55 int count; local
66 for (count = scale_min - sum_scale; count > 0; count--)
147 int borrow, count, val; local
160 for (count = scale_min - diff_scale; count > 0; count--)
176 for (count = n1->n_scale - min_scale; count > 0; count--)
182 for (count = n2->n_scale - min_scale; count > 0; count--)
198 for (count = 0; count < min_len + min_scale; count++)
214 for (count = diff_len - min_len; count > 0; count--)
H A Dnearzero.c50 int count; local
58 count = num->n_len + scale;
62 while ((count > 0) && (*nptr++ == 0)) count--;
64 if (count != 0 && (count != 1 || *--nptr != 1))
/PHP-7.3/ext/simplexml/tests/
H A Dsxe_005.phpt2 SPL: SimpleXMLIterator and overriden count()
22 function count()
25 return parent::count();
31 var_dump(count($sxe));
32 var_dump(count($sxe->elem1));
33 var_dump(count($sxe->elem2));
38 SXETest::count
40 SXETest::count
42 SXETest::count
/PHP-7.3/ext/standard/tests/strings/
H A Dstr_replace_variation3.phpt23 var_dump($count);
30 var_dump($count);
63 var_dump($count);
68 var_dump($count);
75 var_dump($count);
83 var_dump($count);
86 var_dump($count);
89 var_dump($count);
92 var_dump($count);
99 var_dump($count);
[all …]
/PHP-7.3/ext/oci8/tests/
H A Dbug43497.phpt177 Loop count check = 100
181 Loop count check = 100
185 Loop count check = 100
189 Loop count check = 100
193 Loop count check = 100
197 Loop count check = 100
201 Loop count check = 100
205 Loop count check = 100
209 Loop count check = 100
213 Loop count check = 100
[all …]
/PHP-7.3/ext/mbstring/oniguruma/doc/
H A DCALLOUTS.BUILTIN33 Restricts the maximum count of success(default), progress or retraction.
38 (* success count = progress count - retraction count)
44 slot 0: '>': progress count, '<': retraction count, 'X': success count (default)
56 slot 0: '>': progress count (default), '<': retraction count, 'X': success count
57 slot 1: progress count
58 slot 2: retraction count
73 slot 0: '>': progress count (default), '<': retraction count, 'X': success count
74 slot 1: progress count
75 slot 2: retraction count
/PHP-7.3/ext/pcre/tests/
H A Dpcre_count.phpt2 preg_replace() fifth parameter - count
8 $count = 0;
9 var_dump(preg_replace($regex, 'xxxx', $string, -1, $count));
10 var_dump($count);
16 var_dump(preg_replace($regex, 'xxxx', $string, -1, $count));
17 var_dump($count);
23 var_dump(preg_replace($regex, '...', $string, -1, $count));
24 var_dump($count);
27 $count = NULL;
30 var_dump($count);
/PHP-7.3/ext/mysqlnd/
H A Dmysqlnd_read_buffer.c37 mysqlnd_read_buffer_read(MYSQLND_READ_BUFFER * buffer, const size_t count, zend_uchar * dest) in mysqlnd_read_buffer_read() argument
39 if (buffer->len >= count) { in mysqlnd_read_buffer_read()
40 memcpy(dest, buffer->data + buffer->offset, count); in mysqlnd_read_buffer_read()
41 buffer->offset += count; in mysqlnd_read_buffer_read()
42 buffer->len -= count; in mysqlnd_read_buffer_read()
74 mysqlnd_create_read_buffer(const size_t count) in mysqlnd_create_read_buffer() argument
82 ret->data = mnd_emalloc(count); in mysqlnd_create_read_buffer()
83 ret->size = ret->len = count; in mysqlnd_create_read_buffer()
/PHP-7.3/Zend/tests/
H A Dbug68887.phpt6 $count = count(get_resources());
8 var_dump(count(get_resources()) == $count);
10 var_dump(count(get_resources()) == $count);

Completed in 64 milliseconds

12345678910>>...47