Home
last modified time | relevance | path

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

12345678910>>...35

/PHP-5.4/ext/standard/
H A Dformatted_print.c139 if (number < 0) { in php_sprintf_appendint()
143 magn = (unsigned long) number; in php_sprintf_appendint()
164 number, &numbuf[i], i)); in php_sprintf_appendint()
174 unsigned long number, in php_sprintf_appenduint() argument
183 magn = (unsigned long) number; in php_sprintf_appenduint()
206 int *size, double number, in php_sprintf_appenddouble() argument
229 if (zend_isnan(number)) { in php_sprintf_appenddouble()
230 is_negative = (number<0); in php_sprintf_appenddouble()
236 if (zend_isinf(number)) { in php_sprintf_appenddouble()
237 is_negative = (number<0); in php_sprintf_appenddouble()
[all …]
/PHP-5.4/ext/standard/tests/math/
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 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
H A Dabs_basic.phpt7 /* Prototype : number abs ( mixed $number )
8 * Description: Returns the absolute value of number.
/PHP-5.4/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.4/ext/intl/tests/
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.4/ext/ereg/tests/
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 ***
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 ***
/PHP-5.4/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.4/ext/standard/tests/array/
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
H A Darray_reverse_basic2.phpt17 $array = array("a" => "hello", 123 => "number", 'string' => 'blue', "10" => 13.33);
36 string(6) "number"
46 string(6) "number"
56 string(6) "number"
H A Dcount_error.phpt2 Test count() function : error conditions - pass incorrect number of args
6 * Description: Count the number of elements in a variable (usually an array)
11 * Pass incorrect number of arguments to count() to test behaviour
20 //Test count with one more than the expected number of arguments
/PHP-5.4/ext/standard/tests/strings/
H A Dmoney_format_variation2.phpt2 Test money_format() function : usage variations - test values for $number argument
11 /* Prototype : string money_format ( string $format , float $number )
12 * Description: Formats a number as a currency string
20 echo "*** Testing money_format() function: with unexpected inputs for 'number' argument ***\n";
40 // array with different values for $number
95 foreach($numbers as $number) {
97 echo gettype(money_format($format, $number))."\n";
107 *** Testing money_format() function: with unexpected inputs for 'number' argument ***
H A Dsscanf_basic1.phpt21 list($part, $number, $stock) = sscanf($str, $format);
22 var_dump($part, $number, $stock);
26 $res = sscanf($str, $format, $part, $number, $stock);
27 var_dump($res, $part, $number, $stock);
H A Dsscanf_basic2.phpt21 list($part, $number, $stock) = sscanf($str, $format);
22 var_dump($part, $number, $stock);
26 $res = sscanf($str, $format, $part, $number, $stock);
27 var_dump($res, $part, $number, $stock);
H A Dstripos_error.phpt14 echo "\n-- With less than expected number of arguments --";
17 echo "\n-- With more than expected number of arguments --";
28 -- With less than expected number of arguments --
32 -- With more than expected number of arguments --
H A Dstrripos_error.phpt14 echo "\n-- With less than expected number of arguments --";
17 echo "\n-- With more than expected number of arguments --";
27 -- With less than expected number of arguments --
31 -- With more than expected number of arguments --
H A Dstrrpos_error.phpt14 echo "\n-- With less than expected number of arguments --";
17 echo "\n-- With more than expected number of arguments --";
27 -- With less than expected number of arguments --
31 -- With more than expected number of arguments --
/PHP-5.4/ext/oci8/tests/
H A Dbug36403.phpt19 "create table bug36403_tab (c1 number, col2 number, column3 number, col4 number)"
/PHP-5.4/ext/standard/tests/url/
H A Dbase64_encode_error_001.phpt2 Test base64_encode() function : error conditions - wrong number of args
11 echo "*** Testing base64_encode() : error conditions - wrong number of args ***\n";
17 //Test base64_encode with one more than the expected number of arguments
26 *** Testing base64_encode() : error conditions - wrong number of args ***
/PHP-5.4/ext/date/tests/
H A Didate_variation6.phpt17 echo "\n-- Testing idate() function for 2 digit year having no zero as starting number --\n";
21 echo "\n-- Testing idate() function for 2 digit year having zero as starting number --\n";
29 -- Testing idate() function for 2 digit year having no zero as starting number --
32 -- Testing idate() function for 2 digit year having zero as starting number --

Completed in 31 milliseconds

12345678910>>...35