Home
last modified time | relevance | path

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

12345678910>>...16

/php-src/ext/session/tests/
H A Dbug71972.phpt21 function cyclic_ref($num) {
22 $_SESSION['obj'.$num] = new stdClass();
23 $_SESSION['obj'.$num]->test = new stdClass();//NOTE: No bug if try commenting out this too.
24 $_SESSION['obj'.$num]->obj1 = $_SESSION['obj1'];
/php-src/ext/pgsql/tests/
H A D13pg_select.phpt17 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
18 $ids = array('num'=>'1234');
30 ["num"]=>
38 SELECT * FROM "php_pgsql_test" WHERE "num"=1234;
H A D23sync_query_params.phpt17 pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
18 pg_query($db, "INSERT INTO {$table_name} (num) VALUES(1000)");
20 $result = pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100));
43 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
44 pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
46 pg_field_num($result, "num");
H A D11pg_meta_data.phpt15 pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
31 ["num"]=>
33 ["num"]=>
50 ["num"]=>
67 ["num"]=>
H A D17result.phpt15 pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
19 $sql = "SELECT * FROM $table_name ORDER BY num";
43 ["num"]=>
53 ["num"]=>
73 ["num"]=>
H A D12pg_insert_9.phpt18 pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
22 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
41 $converted = pg_insert($db, $table_name, ['num' => []]);
46 $converted = pg_insert($db, $table_name, ['num' => new stdClass()]);
51 $converted = pg_insert($db, $table_name, ['num' => $db]);
68 INSERT INTO "table_12pg_insert_9" ("num","str","bin") VALUES (1234,E'AAA',E'\\x424242');
69 INSERT INTO "table_12pg_insert_9" ("num","str","bin") VALUES ('1234','AAA','BBB');
H A D10pg_convert_9.phpt18 pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
22 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
39 $converted = pg_convert($db, $table_name, ['num' => []]);
44 $converted = pg_convert($db, $table_name, ['num' => new stdClass()]);
49 $converted = pg_convert($db, $table_name, ['num' => $db]);
65 [""num""]=>
H A D25async_query_params.phpt17 pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
18 pg_query($db, "INSERT INTO {$table_name} (num) VALUES(1000)");
20 if (!pg_send_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))) {
51 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
52 pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
54 pg_field_num($result, "num");
H A D30nb_async_query_params.phpt18 pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
19 pg_query($db, "INSERT INTO {$table_name} (num) VALUES(1000)");
24 $sent = pg_send_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100));
52 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
53 pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
55 pg_field_num($result, "num");
/php-src/ext/standard/tests/general_functions/
H A Dbug27678.phpt9 $num = number_format(1e1000, 0, '', ' ');
10 var_dump(strlen($num) == 3); // $num == 'inf'
/php-src/ext/gmp/tests/
H A Dcomparison.phpt22 ["num"]=>
29 ["num"]=>
34 ["num"]=>
H A Dgmp_abs.phpt47 gmp_abs(): Argument #1 ($num) is not an integer string
50 gmp_abs(): Argument #1 ($num) must be of type GMP|string|int, float given
54 gmp_abs(): Argument #1 ($num) is not an integer string
55 gmp_abs(): Argument #1 ($num) is not an integer string
56 gmp_abs(): Argument #1 ($num) must be of type GMP|string|int, array given
H A Dgmp_php_int_max.phpt19 ["num"]=>
23 ["num"]=>
27 ["num"]=>
H A Dgmp_init.phpt36 ["num"]=>
41 gmp_init(): Argument #1 ($num) is not an integer string
42 gmp_init(): Argument #1 ($num) is not an integer string
43 gmp_init(): Argument #1 ($num) is not an integer string
H A Dgmp_fact.phpt50 gmp_fact(): Argument #1 ($num) is not an integer string
52 gmp_fact(): Argument #1 ($num) must be greater than or equal to 0
53 gmp_fact(): Argument #1 ($num) must be greater than or equal to 0
59 gmp_fact(): Argument #1 ($num) must be greater than or equal to 0
60 gmp_fact(): Argument #1 ($num) must be of type GMP|string|int, array given
/php-src/ext/intl/collator/
H A Dcollator_convert.c266 zval* num = collator_convert_string_to_number_if_possible( str, rv ); in collator_convert_string_to_number() local
267 if( num == str ) in collator_convert_string_to_number()
270 zval_ptr_dtor( num ); in collator_convert_string_to_number()
272 num = rv; in collator_convert_string_to_number()
273 ZVAL_LONG( num, 0 ); in collator_convert_string_to_number()
276 return num; in collator_convert_string_to_number()
290 zval* num = collator_convert_string_to_number( str, rv ); in collator_convert_string_to_double() local
291 if( Z_TYPE_P(num) == IS_LONG ) in collator_convert_string_to_double()
293 ZVAL_DOUBLE( num, Z_LVAL_P( num ) ); in collator_convert_string_to_double()
296 return num; in collator_convert_string_to_double()
/php-src/ext/standard/tests/strings/
H A Dhtmlentities22.phpt139 � CHANGED (�, �)
140  CHANGED (, )
143  CHANGED (, )
145 
 CHANGED (
, 
)
146  CHANGED (, )
147  CHANGED (, )
149  CHANGED (, )
150 € CHANGED (€, €)
151 Ÿ CHANGED (Ÿ, Ÿ)
226 � CHANGED (�, �)
[all …]
/php-src/ext/standard/tests/serialize/
H A Dprecision.phpt28 $num = unpack("d", pack("H*", $ns)); $num = reset($num);
29 echo "number: ", sprintf("%.17e", $num), "... ";
30 $num2 = unserialize(serialize($num));
/php-src/ext/xmlreader/tests/
H A D009.phpt9 <books><book num="1"><test /></book><book num="2" /></books>';
21 echo $reader->getAttribute('num');
/php-src/Zend/tests/
H A Dctor_promotion_attributes.phpt9 public int $num,
13 $prop = new ReflectionProperty(Test::class, 'num');
16 $param = new ReflectionParameter([Test::class, '__construct'], 'num');
/php-src/tests/lang/
H A DforeachLoopIteratorAggregate.004.phpt8 private $num = 0;
16 $this->num = 0;
19 $more = $this->num < $this->obj->max;
25 return $this->num;
29 $this->num++;
33 switch($this->num) {
/php-src/ext/standard/tests/array/
H A Darray_fill_error.phpt7 // calling array_fill with negative values for 'num' parameter
9 $num = -1;
13 var_dump( array_fill($start_key,$num,$val) );
/php-src/ext/bcmath/libbcmath/src/
H A Dneg.c36 bool bc_is_neg(bc_num num) in bc_is_neg() argument
38 return num->n_sign == MINUS; in bc_is_neg()
/php-src/ext/gmp/
H A Dgmp_arginfo.h5 ZEND_ARG_TYPE_MASK(0, num, MAY_BE_LONG|MAY_BE_STRING, NULL)
16 ZEND_ARG_OBJ_TYPE_MASK(0, num, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
22 ZEND_ARG_OBJ_TYPE_MASK(0, num, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
26 ZEND_ARG_OBJ_TYPE_MASK(0, num, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
60 ZEND_ARG_OBJ_TYPE_MASK(0, num, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
70 ZEND_ARG_OBJ_TYPE_MASK(0, num, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
74 ZEND_ARG_OBJ_TYPE_MASK(0, num, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
79 ZEND_ARG_OBJ_TYPE_MASK(0, num, GMP, MAY_BE_LONG|MAY_BE_STRING, NULL)
154 ZEND_ARG_OBJ_INFO(0, num, GMP, 0)
160 ZEND_ARG_OBJ_INFO(0, num, GMP, 0)
[all …]
/php-src/tests/classes/
H A Diterators_002.phpt8 private $num = 0;
16 $this->num = 0;
19 $more = $this->num < $this->obj->max;
25 return $this->num;
29 $this->num++;
33 switch($this->num) {

Completed in 29 milliseconds

12345678910>>...16