Home
last modified time | relevance | path

Searched refs:num (Results 76 – 100 of 269) sorted by relevance

1234567891011

/PHP-7.4/ext/dom/tests/
H A Ddomelement.phpt20 $node->setAttribute('num', '1');
21 echo "Chapter: ".$node->getAttribute('num')."\n";
22 echo 'Attribute num exists?: '.($node->hasAttribute('num')?'Yes':'No')."\n";
23 $node->removeAttribute('num');
24 echo "Chapter: ".$node->getAttribute('num')."\n";
25 echo 'Attribute num exists?: '.($node->hasAttribute('num')?'Yes':'No')."\n";
90 Attribute num exists?: Yes
92 Attribute num exists?: No
/PHP-7.4/ext/filter/
H A Dlogical_filters.c337 char *num, *p; in php_filter_float() local
436 switch (is_numeric_string(num, p - num, &lval, &dval, 0)) { in php_filter_float()
456 efree(num); in php_filter_float()
459 efree(num); in php_filter_float()
720 int num, m; in _php_filter_validate_ipv4() local
732 num = num * 10 + ((*(str++)) - '0'); in _php_filter_validate_ipv4()
756 int num, n, i; in _php_filter_validate_ipv6() local
817 num = n = 0; in _php_filter_validate_ipv6()
820 num = 16 * num + (*str - '0'); in _php_filter_validate_ipv6()
822 num = 16 * num + (*str - 'a') + 10; in _php_filter_validate_ipv6()
[all …]
/PHP-7.4/ext/pgsql/tests/
H A Dpg_meta_data_001.phpt33 ["num"]=>
50 ["num"]=>
69 ["num"]=>
86 ["num"]=>
105 ["num"]=>
130 ["num"]=>
H A D12pg_insert_9.phpt17 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
27 INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES (1234,E'AAA',E'\\x424242');
28 INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES ('1234','AAA','BBB');
H A D10pg_convert.phpt16 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
23 [""num""]=>
H A D10pg_convert_9.phpt17 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
24 [""num""]=>
/PHP-7.4/ext/standard/tests/array/
H A Darray_fill_variation4.phpt5 /* Prototype : proto array array_fill(int start_key, int num, mixed val)
6 …* Description: Create an array containing num elements starting with index start_key each initiali…
15 $num = 2;
39 var_dump( array_fill($start_key,$num,array_fill($start_key,$num,$val)) );
H A Darray_fill_basic.phpt5 /* Prototype : proto array array_fill(int start_key, int num, mixed val)
6 …* Description: Create an array containing num elements starting with index start_key each initiali…
14 $num = 2;
38 var_dump( array_fill($start_key,$num,$val) );
H A Darray_fill_variation3.phpt5 /* Prototype : array array_fill(int $start_key, int $num, mixed $val)
6 …* Description: Create an array containing num elements starting with index start_key each initiali…
18 $num = 2;
59 var_dump( array_fill($start_key , $num , $val) );
/PHP-7.4/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++;
42 if ($row['_num'] != $num)
H A Dpdo_mysql_attr_autocommit.phpt58 $num = $row['_num'];
61 $num++;
63 if ($row['_num'] != $num)
69 if ($row['_num'] != $num)
78 if ($row['_num'] != $num)
83 $num--;
85 if ($row['_num'] != $num)
/PHP-7.4/ext/xmlreader/tests/
H A D014.phpt11 <books><book num="1" idx="2">book1</book></books>';
28 // Try to set the value of the first "num" attribute from "1" to "num attribute 1"
30 $reader->value = 'num attribute 1';
31 // Try to set the name of the first attribute from "num" to "number"
H A D003-get-errors.phpt11 <books><book num="1" idx="2">book1</book></books>';
68 num: 1
72 num: 1
74 num: 1
76 num: 1
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_next_result_error.phpt38 $stmt->bind_result($num);
40 echo "num = $num\n";
66 num = 1
H A D039.phpt19 $num = mysqli_num_fields($result);
23 var_dump($num);
/PHP-7.4/ext/gmp/tests/
H A Dserialize.phpt27 ["num"]=>
32 ["num"]=>
38 ["num"]=>
H A Dclone.phpt16 ["num"]=>
20 ["num"]=>
H A Dbug50175.phpt14 ["num"]=>
18 ["num"]=>
/PHP-7.4/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-7.4/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-7.4/ext/dba/libcdb/
H A Dcdb_make.c81 if (!head || (head->num >= CDB_HPLIST)) { in cdb_make_addend()
85 head->num = 0; in cdb_make_addend()
89 head->hp[head->num].h = h; in cdb_make_addend()
90 head->hp[head->num].p = c->pos; in cdb_make_addend()
91 ++head->num; in cdb_make_addend()
154 i = x->num; in cdb_make_finish()
187 i = x->num; in cdb_make_finish()
/PHP-7.4/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-7.4/ext/standard/tests/strings/
H A Dbug39873.phpt12 $num = 0+"1234.56";
13 echo number_format($num,2);
/PHP-7.4/ext/mbstring/
H A Dmb_gpc.c190 size_t n, num, *len_list = NULL; in _php_mb_encoding_handler_ex() local
208 num = 1; in _php_mb_encoding_handler_ex()
212 num++; in _php_mb_encoding_handler_ex()
216 num *= 2; /* need space for variable name and value */ in _php_mb_encoding_handler_ex()
218 val_list = (char **)ecalloc(num, sizeof(char *)); in _php_mb_encoding_handler_ex()
219 len_list = (size_t *)ecalloc(num, sizeof(size_t)); in _php_mb_encoding_handler_ex()
252 num = n; /* make sure to process initialized vars only */ in _php_mb_encoding_handler_ex()
265 while (n < num) { in _php_mb_encoding_handler_ex()
302 while (n < num) { in _php_mb_encoding_handler_ex()

Completed in 42 milliseconds

1234567891011