Home
last modified time | relevance | path

Searched refs:num (Results 26 – 50 of 334) sorted by relevance

12345678910>>...14

/PHP-8.0/ext/gmp/
H A Dgmp.stub.php9 function gmp_init(int|string $num, int $base = 0): GMP {} argument
15 function gmp_intval(GMP|int|string $num): int {} argument
38 function gmp_neg(GMP|int|string $num): GMP {} argument
40 function gmp_abs(GMP|int|string $num): GMP {} argument
42 function gmp_fact(GMP|int|string $num): GMP {} argument
44 function gmp_sqrt(GMP|int|string $num): GMP {} argument
46 function gmp_sqrtrem(GMP|int|string $num): array {} argument
78 function gmp_sign(GMP|int|string $num): int {} argument
90 function gmp_com(GMP|int|string $num): GMP {} argument
96 function gmp_clrbit(GMP $num, int $index): void {} argument
[all …]
/PHP-8.0/ext/bcmath/libbcmath/src/
H A Dnum2long.c46 bc_num2long (num) in bc_num2long() argument
47 bc_num num; in bc_num2long()
55 nptr = num->n_value;
56 for (index = num->n_len; index > 0; index--) {
71 if (num->n_sign == PLUS)
H A Dneg.c43 bc_is_neg (num) in bc_is_neg() argument
44 bc_num num; in bc_is_neg()
46 return num->n_sign == MINUS;
/PHP-8.0/ext/sqlite3/tests/
H A Dbug63921-32bit.phpt10 $num = PHP_INT_MAX; // 32 bits
12 $conn->query('CREATE TABLE users (id INTEGER NOT NULL, num INTEGER NOT NULL, PRIMARY KEY(id))');
14 $stmt = $conn->prepare('insert into users (id, num) values (:id, :num)');
16 $stmt->bindValue(':num', $num, SQLITE3_INTEGER);
19 $stmt = $conn->query('SELECT num FROM users');
22 var_dump($num,$result[0]);
/PHP-8.0/ext/session/tests/
H A Dsession_set_save_handler_class_008.phpt16 public $num;
17 public function __construct($num) {
18 $this->num = $num;
19 echo "(#$this->num) constructor called\n";
22 echo "(#$this->num) destructor called\n";
26 echo "(#$this->num) finish called $id\n";
30 echo "(#$this->num) writing $id = $data\n";
35 echo "(#$this->num) closing $id\n";
H A Dsession_set_save_handler_class_009.phpt16 public $num;
17 public function __construct($num) {
18 $this->num = $num;
19 echo "(#$this->num) constructor called\n";
22 echo "(#$this->num) destructor called\n";
26 echo "(#$this->num) finish called $id\n";
30 echo "(#$this->num) writing $id = $data\n";
35 echo "(#$this->num) closing $id\n";
H A Dsession_set_save_handler_class_010.phpt16 public $num;
17 public function __construct($num) {
18 $this->num = $num;
19 echo "(#$this->num) constructor called\n";
22 echo "(#$this->num) destructor called\n";
26 echo "(#$this->num) finish called $id\n";
30 echo "(#$this->num) writing $id = $data\n";
35 echo "(#$this->num) closing $id\n";
H A Dsession_set_save_handler_class_007.phpt16 public $num;
17 public function __construct($num) {
18 $this->num = $num;
19 echo "(#$this->num) constructor called\n";
22 echo "(#$this->num) destructor called\n";
26 echo "(#$this->num) finish called $id\n";
30 echo "(#$this->num) writing $id = $data\n";
35 echo "(#$this->num) closing $id\n";
/PHP-8.0/ext/pcre/tests/
H A Drequest47456.phpt8 preg_match_all('/(?J)(?<chr>[ac])(?<num>\d)|(?<chr>[b])/', 'a1bc3', $m, PREG_SET_ORDER);
12 preg_match_all('/(?<chr>[ac])(?<num>\d)|(?<chr>[b])/J', 'a1bc3', $m, PREG_SET_ORDER);
25 ["num"]=>
38 ["num"]=>
53 ["num"]=>
68 ["num"]=>
81 ["num"]=>
96 ["num"]=>
/PHP-8.0/ext/gmp/tests/
H A Dgmp_strict_types.phpt40 ["num"]=>
44 ["num"]=>
48 ["num"]=>
51 gmp_abs(): Argument #1 ($num) must be of type GMP|string|int, float given
52 gmp_abs(): Argument #1 ($num) must be of type GMP|string|int, bool given
53 gmp_abs(): Argument #1 ($num) must be of type GMP|string|int, bool given
54 gmp_abs(): Argument #1 ($num) must be of type GMP|string|int, null given
55 gmp_abs(): Argument #1 ($num) must be of type GMP|string|int, array given
H A Dgmp_div_q.phpt46 ["num"]=>
51 ["num"]=>
56 ["num"]=>
60 ["num"]=>
64 ["num"]=>
68 ["num"]=>
72 ["num"]=>
76 ["num"]=>
H A Dgmp_div_r.phpt46 ["num"]=>
51 ["num"]=>
56 ["num"]=>
60 ["num"]=>
64 ["num"]=>
68 ["num"]=>
72 ["num"]=>
76 ["num"]=>
H A Dgmp_root.phpt37 ["num"]=>
41 ["num"]=>
45 ["num"]=>
49 ["num"]=>
53 ["num"]=>
58 ["num"]=>
/PHP-8.0/ext/pgsql/tests/
H A D14pg_update.phpt15 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
16 $ids = array('num'=>'1234');
25 UPDATE "php_pgsql_test" SET "num"=1234,"str"=E'ABC',"bin"=E'XYZ' WHERE "num"=1234;
26 UPDATE "php_pgsql_test" SET "num='1234',"str='ABC',"bin='XYZ' WHERE "num='1234';
H A D14pg_update_9.phpt17 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
18 $ids = array('num'=>'1234');
27 UPDATE "php_pgsql_test" SET "num"=1234,"str"=E'ABC',"bin"=E'\\x58595a' WHERE "num"=1234;
28 UPDATE "php_pgsql_test" SET "num"='1234',"str"='ABC',"bin"='XYZ' WHERE "num"='1234';
H A D13pg_select_9.phpt17 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
18 $ids = array('num'=>'1234');
37 $converted = pg_select($db, $table_name, ['num' => []]);
42 $converted = pg_select($db, $table_name, ['num' => new stdClass()]);
47 $converted = pg_select($db, $table_name, ['num' => $db]);
60 ["num"]=>
69 ["num"]=>
77 SELECT * FROM "php_pgsql_test" WHERE "num"=1234;
78 SELECT * FROM "php_pgsql_test" WHERE "num"='1234';
/PHP-8.0/ext/oci8/tests/
H A Dfield_funcs.phpt43 foreach ($row as $num => $field) {
44 $num++;
45 var_dump(oci_field_is_null($s, $num));
46 var_dump(oci_field_name($s, $num));
47 var_dump(oci_field_type($s, $num));
48 var_dump(oci_field_type_raw($s, $num));
49 var_dump(oci_field_scale($s, $num));
50 var_dump(oci_field_precision($s, $num));
51 var_dump(oci_field_size($s, $num));
H A Dfield_funcs3.phpt38 foreach ($row as $num => $field) {
39 $num++;
40 var_dump(oci_field_is_null($s, $num));
41 var_dump(oci_field_name($s, $num));
42 var_dump(oci_field_type($s, $num));
43 var_dump(oci_field_type_raw($s, $num));
44 var_dump(oci_field_scale($s, $num));
45 var_dump(oci_field_precision($s, $num));
46 var_dump(oci_field_size($s, $num));
/PHP-8.0/ext/standard/tests/math/
H A Ddecoct_variation1.phpt2 Test decoct() function : usage variations - different data types as $num arg
109 decoct(): Argument #1 ($num) must be of type int, float given
112 decoct(): Argument #1 ($num) must be of type int, float given
121 decoct(): Argument #1 ($num) must be of type int, float given
148 decoct(): Argument #1 ($num) must be of type int, string given
151 decoct(): Argument #1 ($num) must be of type int, string given
154 decoct(): Argument #1 ($num) must be of type int, array given
157 decoct(): Argument #1 ($num) must be of type int, string given
160 decoct(): Argument #1 ($num) must be of type int, string given
163 decoct(): Argument #1 ($num) must be of type int, string given
[all …]
H A Ddecbin_variation1.phpt2 Test decbin() function : usage variations - different data types as $num arg
109 decbin(): Argument #1 ($num) must be of type int, float given
112 decbin(): Argument #1 ($num) must be of type int, float given
121 decbin(): Argument #1 ($num) must be of type int, float given
148 decbin(): Argument #1 ($num) must be of type int, string given
151 decbin(): Argument #1 ($num) must be of type int, string given
154 decbin(): Argument #1 ($num) must be of type int, array given
157 decbin(): Argument #1 ($num) must be of type int, string given
160 decbin(): Argument #1 ($num) must be of type int, string given
163 decbin(): Argument #1 ($num) must be of type int, string given
[all …]
H A Ddechex_variation1.phpt2 Test dechex() function : usage variations - different data types as $num arg
109 dechex(): Argument #1 ($num) must be of type int, float given
112 dechex(): Argument #1 ($num) must be of type int, float given
121 dechex(): Argument #1 ($num) must be of type int, float given
148 dechex(): Argument #1 ($num) must be of type int, string given
151 dechex(): Argument #1 ($num) must be of type int, string given
154 dechex(): Argument #1 ($num) must be of type int, array given
157 dechex(): Argument #1 ($num) must be of type int, string given
160 dechex(): Argument #1 ($num) must be of type int, string given
163 dechex(): Argument #1 ($num) must be of type int, string given
[all …]
/PHP-8.0/tests/classes/
H A Diterators_004.phpt21 public $num = 0;
25 return $this->num;
29 $this->num++;
33 return $this->num < $this->max;
37 switch($this->num) {
58 object:num=>0
/PHP-8.0/ext/pdo_mysql/tests/
H A Dlast_insert_id.phpt15 print_r($db->query("CREATE TABLE test (id int auto_increment primary key, num int)"));
17 print_r($db->query("INSERT INTO test (id, num) VALUES (23, 42)"));
19 print_r($db->query("INSERT INTO test (num) VALUES (451)"));
26 [queryString] => CREATE TABLE test (id int auto_increment primary key, num int)
30 [queryString] => INSERT INTO test (id, num) VALUES (23, 42)
34 [queryString] => INSERT INTO test (num) VALUES (451)
/PHP-8.0/ext/soap/tests/bugs/
H A Dbug36999.phpt12 function echoLong($num) {
13 return $num;
36 function test($num) {
39 printf("%s %0.0f\n", gettype($num), $num);
40 $ret = $soap->echoLong($num);
/PHP-8.0/Zend/tests/
H A Dbug40261.phpt7 $num = 100000;
10 for ($i=0; $i<$num; $i++) {
14 for ($i=0; $i<$num; $i++) {
19 for ($i=0; $i<$num; $i++) {

Completed in 36 milliseconds

12345678910>>...14