Home
last modified time | relevance | path

Searched refs:num (Results 101 – 125 of 334) sorted by relevance

12345678910>>...14

/PHP-8.0/ext/gmp/tests/
H A Dserialize.phpt27 ["num"]=>
32 ["num"]=>
38 ["num"]=>
H A Dgmp_sign.phpt39 gmp_sign(): Argument #1 ($num) is not an integer string
40 gmp_init(): Argument #1 ($num) is not an integer string
41 gmp_sign(): Argument #1 ($num) must be of type GMP|string|int, array given
H A Dclone.phpt16 ["num"]=>
20 ["num"]=>
H A Dgmp_mod.phpt38 ["num"]=>
42 ["num"]=>
48 ["num"]=>
H A Dbug50175.phpt14 ["num"]=>
18 ["num"]=>
H A Dgmp_nextprime.phpt46 gmp_nextprime(): Argument #1 ($num) must be of type GMP|string|int, array given
47 gmp_nextprime(): Argument #1 ($num) is not an integer string
48 gmp_nextprime(): Argument #1 ($num) must be of type GMP|string|int, stdClass given
/PHP-8.0/ext/soap/tests/
H A Dserver010.phpt10 function Sum($num) {
11 return $this->sum += $num;
31 <num xsi:type="xsd:int">5</num>
49 <num xsi:type="xsd:int">3</num>
H A Dserver009.phpt18 function Sum($num) {
19 return $this->sum += $num;
38 <num xsi:type="xsd:int">5</num>
56 <num xsi:type="xsd:int">3</num>
/PHP-8.0/tests/classes/
H A Diterators_003.phpt8 private $num = 0;
18 $more = $this->num < $this->obj->max;
24 return $this->num;
28 $this->num++;
31 return $this->num;
/PHP-8.0/ext/intl/tests/
H A Dformatter_format_and_parse_errors.phpt9 $num = 5;
14 numfmt_format($o, $num, -20);
19 $o->format($num, -20);
36 numfmt_format($o, $num, NumberFormatter::TYPE_CURRENCY);
41 $o->format($num, NumberFormatter::TYPE_CURRENCY);
H A Dbug67052-win32.phpt17 $num = "1.234.567,891";
18 $res_str = $fmt->parse($num)."\n";
H A Dformatter_get_error.phpt18 $num = ut_nfmt_parse_currency( $fmt, '123.45', $currency, $pos );
19 if( $num === false )
/PHP-8.0/ext/pgsql/tests/
H A D10pg_convert.phpt16 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
23 [""num""]=>
H A D12pg_insert.phpt15 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
23 INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES (1234,E'AAA',E'BBB');
/PHP-8.0/ext/opcache/Optimizer/
H A Dzend_call_graph.c43 func_info->num = call_graph->op_arrays_count; in zend_op_array_collect()
132 uint32_t num = opline->op2.num; in zend_analyze_calls() local
133 if (num > 0) { in zend_analyze_calls()
134 num--; in zend_analyze_calls()
136 call_info->arg_info[num].opline = opline; in zend_analyze_calls()
167 if (zend_bitset_in(visited, func_info->num)) { in zend_is_indirectly_recursive()
170 zend_bitset_incl(visited, func_info->num); in zend_is_indirectly_recursive()
/PHP-8.0/ext/dba/libcdb/
H A Dcdb_make.c79 if (!head || (head->num >= CDB_HPLIST)) { in cdb_make_addend()
83 head->num = 0; in cdb_make_addend()
87 head->hp[head->num].h = h; in cdb_make_addend()
88 head->hp[head->num].p = c->pos; in cdb_make_addend()
89 ++head->num; in cdb_make_addend()
152 i = x->num; in cdb_make_finish()
185 i = x->num; in cdb_make_finish()
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_rollback.phpt21 $num = $row['_num'];
24 $num++;
26 if ($row['_num'] != $num)
30 $num--;
32 if ($row['_num'] != $num)
39 $num++;
/PHP-8.0/ext/mysqli/tests/
H A D039.phpt19 $num = mysqli_num_fields($result);
23 var_dump($num);
H A Dmysqli_autocommit.phpt63 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS num FROM test'))
66 if ((!$tmp = mysqli_fetch_assoc($res)) || (1 != $tmp['num']))
68 $tmp['num'], mysqli_errno($link), mysqli_error($link));
98 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS num FROM test'))
101 if (0 != $tmp['num'])
102 printf("[27] Expecting 0 rows in table test, found %d rows\n", $tmp['num']);
111 if (!$res = mysqli_query($link, 'SELECT COUNT(*) AS num FROM test'))
114 if ((!$tmp = mysqli_fetch_assoc($res)) || (1 != $tmp['num']))
116 $tmp['num'], mysqli_errno($link), mysqli_error($link));
H A Dmysqli_autocommit_oo.phpt64 if (!$res = $mysqli->query('SELECT COUNT(*) AS num FROM test'))
67 if ((!$tmp = $res->fetch_assoc()) || (1 != $tmp['num']))
69 $tmp['num'], $mysqli->errno, $mysqli->error);
100 if (!$res = $mysqli->query('SELECT COUNT(*) AS num FROM test'))
103 if (0 != $tmp['num'])
104 printf("[24] Expecting 0 rows in table test, found %d rows\n", $tmp['num']);
113 if (!$res = $mysqli->query('SELECT COUNT(*) AS num FROM test'))
116 if ((!$tmp = $res->fetch_assoc()) || (1 != $tmp['num']))
118 $tmp['num'], $mysqli->errno, $mysqli->error);
/PHP-8.0/ext/xmlreader/tests/
H A D003-get-errors.phpt11 <books><book num="1" idx="2">book1</book></books>';
71 num: 1
73 num: 1
75 num: 1
77 num: 1
/PHP-8.0/ext/pdo/tests/
H A Dpdo_021.phpt41 $num = $select->fetchColumn();
42 echo 'There are ' . $num . " rows in the table.\n";
52 $num = $select->fetchColumn();
53 echo 'There are ' . $num . " rows in the table.\n";
/PHP-8.0/ext/standard/tests/strings/
H A Dbug39873.phpt12 $num = 0+"1234.56";
13 echo number_format($num,2);
/PHP-8.0/Zend/
H A Dzend_vm_gen.php1249 $next = $num + 1;
1283 if ($num >= 256) {
1284 $opcodes[$num]['spec_code'] = $specs[$num];
1480 if ($num >= 256) {
1483 $next = $num+1;
1539 $specs[$num + 1] = "$label";
1560 $last = $num;
1722 …r($f, 1, $kind, $opcodes[$num]["op"], $op1, $op2, isset($opcodes[$num]["use"]), $opcodes[$num]["co…
1732 …kind, $num, $op1, $op2, $helpers[$num]["param"], $helpers[$num]["code"], $lineno, $helpers[$num]["…
1751 …($f, 0, $kind, $opcodes[$num]["op"], "ANY", "ANY", isset($opcodes[$num]["use"]), $opcodes[$num]["c…
[all …]
/PHP-8.0/ext/mbstring/
H A Dmb_gpc.c182 size_t n, num, *len_list = NULL; in _php_mb_encoding_handler_ex() local
200 num = 1; in _php_mb_encoding_handler_ex()
204 num++; in _php_mb_encoding_handler_ex()
208 num *= 2; /* need space for variable name and value */ in _php_mb_encoding_handler_ex()
210 val_list = (char **)ecalloc(num, sizeof(char *)); in _php_mb_encoding_handler_ex()
211 len_list = (size_t *)ecalloc(num, sizeof(size_t)); in _php_mb_encoding_handler_ex()
244 num = n; /* make sure to process initialized vars only */ in _php_mb_encoding_handler_ex()
257 while (n < num) { in _php_mb_encoding_handler_ex()
294 while (n < num) { in _php_mb_encoding_handler_ex()

Completed in 51 milliseconds

12345678910>>...14