Home
last modified time | relevance | path

Searched refs:number (Results 26 – 50 of 894) sorted by relevance

12345678910>>...36

/PHP-5.5/ext/date/tests/
H A Dgmstrftime_variation7.phpt20 'Day of the month as a decimal number' => "%d",
21 'Day of the year as a decimal number' => "%j",
22 'Day of the week as a decimal number' => "%w"
38 --Day of the month as a decimal number--
42 --Day of the year as a decimal number--
46 --Day of the week as a decimal number--
/PHP-5.5/ext/imap/tests/
H A Dimap_fetchbody_variation2.phpt110 Warning: imap_fetchbody(): Bad message number in %s on line %d
118 Warning: imap_fetchbody(): Bad message number in %s on line %d
123 Warning: imap_fetchbody(): Bad message number in %s on line %d
128 Warning: imap_fetchbody(): Bad message number in %s on line %d
133 Warning: imap_fetchbody(): Bad message number in %s on line %d
138 Warning: imap_fetchbody(): Bad message number in %s on line %d
143 Warning: imap_fetchbody(): Bad message number in %s on line %d
148 Warning: imap_fetchbody(): Bad message number in %s on line %d
153 Warning: imap_fetchbody(): Bad message number in %s on line %d
158 Warning: imap_fetchbody(): Bad message number in %s on line %d
[all …]
H A Dimap_fetchheader_variation2.phpt125 Warning: imap_fetchheader(): Bad message number in %s on line %d
139 Warning: imap_fetchheader(): Bad message number in %s on line %d
144 Warning: imap_fetchheader(): Bad message number in %s on line %d
149 Warning: imap_fetchheader(): Bad message number in %s on line %d
154 Warning: imap_fetchheader(): Bad message number in %s on line %d
159 Warning: imap_fetchheader(): Bad message number in %s on line %d
164 Warning: imap_fetchheader(): Bad message number in %s on line %d
169 Warning: imap_fetchheader(): Bad message number in %s on line %d
174 Warning: imap_fetchheader(): Bad message number in %s on line %d
179 Warning: imap_fetchheader(): Bad message number in %s on line %d
[all …]
/PHP-5.5/ext/standard/tests/math/
H A Ddechex_error.phpt5 /* Prototype : string dechex ( int $number )
6 …* Description: Returns a string containing a hexadecimal representation of the given number argum…
12 echo "\nIncorrect number of arguments\n";
21 Incorrect number of arguments
H A Dallowed_rounding_error.inc2 function allowed_rounding_error ($number, $expected) {
11 if ($number < $max && $number > $min ) {
H A Dabs_variation.phpt2 Test abs() function : usage variations - different data types as $number arg
5 /* Prototype : number abs ( mixed $number )
6 * Description: Returns the absolute value of number.
11 * Pass different data types as $number argument to abs() to test behaviour
36 // unexpected values to be passed to $number argument
H A Doctdec_error.phpt5 /* Prototype : number octdec ( string $octal_string )
6 …* Description: Returns the decimal equivalent of the octal number represented by the octal_string …
17 echo "\n-- Incorrect number of arguments --\n";
29 -- Incorrect number of arguments --
H A Dhexdec_error.phpt5 /* Prototype : number hexdec ( string $hex_string )
6 …* Description: Returns the decimal equivalent of the hexadecimal number represented by the hex_str…
17 echo "\n-- Incorrect number of arguments --\n";
28 -- Incorrect number of arguments --
H A Dbindec_error.phpt5 /* Prototype : number bindec ( string $binary_string )
6 …* Description: Returns the decimal equivalent of the binary number represented by the binary_strin…
21 echo "Incorrect number of arguments\n";
30 Incorrect number of arguments
H A Ddecoct_error.phpt5 /* Prototype : string decbin ( int $number )
12 echo "Incorrect number of arguments\n";
20 Incorrect number of arguments
H A Dabs_basic.phpt7 /* Prototype : number abs ( mixed $number )
8 * Description: Returns the absolute value of number.
H A Dbase_convert_error.phpt5 /* Prototype : string base_convert ( string $number , int $frombase , int $tobase )
6 * Description: Convert a number between arbitrary bases.
17 echo "Incorrect number of arguments\n";
30 Incorrect number of arguments
/PHP-5.5/ext/intl/doc/
H A Dformatter_api.php179 * @param integer|double $number Number to format
183 public function format($number, $type = 0) {} argument
203 * @param double $number Number to format
206 public function formatCurrency($number, $currency) {} argument
349 * @param integer|double $number Number to format
353 function numfmt_format($formatter, $number, $type = null) {} argument
373 * @param double $number Number to format
376 function numfmt_format_currency($formatter, $number, $currency) {} argument
/PHP-5.5/ext/intl/tests/
H A Dmsgfmt_clone.phpt13 $fmt = ut_msgfmt_create( "en_US", "{0,number} monkeys on {1,number} trees" );
19 $pattern = "{0,number} trees hosting {1,number} monkeys";
H A Dformatter_get_set_pattern.phpt33 $res_str .= "Formatted number: " . ut_nfmt_format( $fmt, $test_value ) . "\n";
37 $res_str .= "Formatted number: " . ut_nfmt_format( $fmt, $test_value ) . "\n";
50 Formatted number: 12345.1
52 Formatted number: 12345.123456000000000000000000000000000000000000000000000000000000000000000000000…
/PHP-5.5/ext/standard/
H A Drand.c293 long number; in PHP_FUNCTION() local
299 number = php_rand(TSRMLS_C); in PHP_FUNCTION()
301 RAND_RANGE(number, min, max, PHP_RAND_MAX); in PHP_FUNCTION()
304 RETURN_LONG(number); in PHP_FUNCTION()
314 long number; in PHP_FUNCTION() local
338 number = (long) (php_mt_rand(TSRMLS_C) >> 1); in PHP_FUNCTION()
340 RAND_RANGE(number, min, max, PHP_MT_RAND_MAX); in PHP_FUNCTION()
343 RETURN_LONG(number); in PHP_FUNCTION()
H A Dformatted_print.c144 if (number < 0) { in php_sprintf_appendint()
148 magn = (unsigned long) number; in php_sprintf_appendint()
169 number, &numbuf[i], i)); in php_sprintf_appendint()
179 unsigned long number, in php_sprintf_appenduint() argument
188 magn = (unsigned long) number; in php_sprintf_appenduint()
211 int *size, double number, in php_sprintf_appenddouble() argument
238 if (zend_isnan(number)) { in php_sprintf_appenddouble()
239 is_negative = (number<0); in php_sprintf_appenddouble()
245 if (zend_isinf(number)) { in php_sprintf_appenddouble()
246 is_negative = (number<0); in php_sprintf_appenddouble()
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_rand_variation2.phpt94 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
102 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
107 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
136 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
141 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
146 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
151 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
156 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
161 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
169 Warning: array_rand(): Second argument has to be between 1 and the number of elements in the array …
[all …]
H A Darray_combine_error2.phpt25 // Testing array_combine with arrays having unequal number of elements
26 echo "\n-- Testing array_combine() function by passing array with unequal number of elements --\n";
40 Warning: array_combine(): Both parameters should have an equal number of elements in %s on line %d
45 Warning: array_combine(): Both parameters should have an equal number of elements in %s on line %d
48 -- Testing array_combine() function by passing array with unequal number of elements --
50 Warning: array_combine(): Both parameters should have an equal number of elements in %s on line %d
/PHP-5.5/ext/wddx/tests/
H A Dbug35410.phpt24 <number>10</number>
27 <number>4</number>
H A Dbug35410_64bit.phpt24 <number>10</number>
27 <number>4</number>
/PHP-5.5/ext/mbstring/tests/
H A Dmb_substr_count_error1.phpt2 Test mb_substr_count() function : error conditions - pass incorrect number of arguments
11 * Description: Count the number of substring occurrences
16 * Pass an incorrect number of arguments to mb_substr_count() to test behaviour
22 //Test mb_substr_count with one more than the expected number of arguments
30 // Testing mb_substr_count with one less than the expected number of arguments
/PHP-5.5/ext/ereg/tests/
H A Dsplit_error_001.phpt2 Test split() function : error conditions - wrong number of args
11 echo "*** Testing split() : error conditions - wrong number of args ***\n";
14 //Test split with one more than the expected number of arguments
22 // Testing split with one less than the expected number of arguments
30 *** Testing split() : error conditions - wrong number of args ***
H A Dspliti_error_001.phpt2 Test spliti() function : error conditions - wrong number of args
11 echo "*** Testing spliti() : error conditions - wrong number of args ***\n";
14 //Test spliti with one more than the expected number of arguments
22 // Testing spliti with one less than the expected number of arguments
30 *** Testing spliti() : error conditions - wrong number of args ***
/PHP-5.5/ext/dba/tests/
H A Ddba_handler.inc49 if (dba_insert("key number 6", "The 6th value", $db_writer)) {
50 echo '"key number 6" written' . "\n";
52 echo 'Failed to write "key number 6"' . "\n";
54 if (dba_insert("key number 6", "The 6th value inserted again would be an error", $db_writer)) {
55 echo '"key number 6" written 2nd time' . "\n";
57 echo 'Failed to write "key number 6" 2nd time' . "\n";
62 echo dba_fetch("key number 6", $db_writer)."\n";

Completed in 36 milliseconds

12345678910>>...36