????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.133.83.94 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/general_functions/ |
Upload File : |
--TEST-- Test is_int() & it's FALIASes: is_long() & is_integer() functions --SKIPIF-- <?php if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only"); ?> --INI-- precision=14 --FILE-- <?php /* Prototype: bool is_int ( mixed $var ); * Description: Finds whether the given variable is an integer */ echo "*** Testing is_int(), is_integer() & is_long() with valid integer values ***\n"; // different valid integer vlaues $valid_ints = array( 0, 1, -1, -2147483648, // max negative integer value -2147483647, 2147483647, // max positive integer value 2147483640, 0x123B, // integer as hexadecimal 0x12ab, 0Xfff, 0XFA, -0x80000000, // max negative integer as hexadecimal 0x7fffffff, // max postive integer as hexadecimal 0x7FFFFFFF, // max postive integer as hexadecimal 0123, // integer as octal 01912, // should be quivalent to octal 1 -020000000000, // max negative integer as octal 017777777777, // max positive integer as octal ); /* loop to check that is_int() recognizes different integer values, expected output: bool(true) */ $loop_counter = 1; foreach ($valid_ints as $int_val ) { echo "--Iteration $loop_counter--\n"; $loop_counter++; var_dump( is_int($int_val) ); var_dump( is_integer($int_val) ); var_dump( is_long($int_val) ); } echo "\n*** Testing is_int(), is_integer() & is_long() with non integer values ***\n"; // resource type variable $fp = fopen (__FILE__, "r"); $dfp = opendir ( dirname(__FILE__) ); // unset variable $unset_var = 10; unset ($unset_var); // other types in a array $not_int_types = array ( /* float values */ -2147483649, // float value 2147483648, // float value -0x80000001, // float value, beyond max negative int 0x800000001, // float value, beyond max positive int 020000000001, // float value, beyond max positive int -020000000001, // float value, beyond max negative int 0.0, -0.1, 1.0, 1e5, -1e6, 1E8, -1E9, 10.0000000000000000005, 10.5e+5, /* objects */ new stdclass, /* resources */ $fp, $dfp, /* arrays */ array(), array(0), array(1), array(NULL), array(null), array("string"), array(true), array(TRUE), array(false), array(FALSE), array(1,2,3,4), array(1 => "One", "two" => 2), /* strings */ "", '', "0", '0', "1", '1', "\x01", '\x01', "\01", '\01', 'string', "string", "true", "FALSE", 'false', 'TRUE', "NULL", 'null', /* booleans */ true, false, TRUE, FALSE, /* undefined and unset vars */ @$unset_var, @$undefined_var ); /* loop through the $not_int_types to see working of is_int() on non integer types, expected output: bool(false) */ $loop_counter = 1; foreach ($not_int_types as $type ) { echo "--Iteration $loop_counter--\n"; $loop_counter++; var_dump( is_int($type) ); var_dump( is_integer($type) ); var_dump( is_long($type) ); } echo "\n*** Testing error conditions ***\n"; //Zero argument var_dump( is_int() ); var_dump( is_integer() ); var_dump( is_long() ); //arguments more than expected var_dump( is_int(TRUE, FALSE) ); var_dump( is_integer(TRUE, FALSE) ); var_dump( is_long(TRUE, FALSE) ); echo "Done\n"; ?> --EXPECTF-- *** Testing is_int(), is_integer() & is_long() with valid integer values *** --Iteration 1-- bool(true) bool(true) bool(true) --Iteration 2-- bool(true) bool(true) bool(true) --Iteration 3-- bool(true) bool(true) bool(true) --Iteration 4-- bool(true) bool(true) bool(true) --Iteration 5-- bool(true) bool(true) bool(true) --Iteration 6-- bool(true) bool(true) bool(true) --Iteration 7-- bool(true) bool(true) bool(true) --Iteration 8-- bool(true) bool(true) bool(true) --Iteration 9-- bool(true) bool(true) bool(true) --Iteration 10-- bool(true) bool(true) bool(true) --Iteration 11-- bool(true) bool(true) bool(true) --Iteration 12-- bool(true) bool(true) bool(true) --Iteration 13-- bool(true) bool(true) bool(true) --Iteration 14-- bool(true) bool(true) bool(true) --Iteration 15-- bool(true) bool(true) bool(true) --Iteration 16-- bool(true) bool(true) bool(true) --Iteration 17-- bool(true) bool(true) bool(true) --Iteration 18-- bool(true) bool(true) bool(true) *** Testing is_int(), is_integer() & is_long() with non integer values *** --Iteration 1-- bool(true) bool(true) bool(true) --Iteration 2-- bool(true) bool(true) bool(true) --Iteration 3-- bool(true) bool(true) bool(true) --Iteration 4-- bool(true) bool(true) bool(true) --Iteration 5-- bool(true) bool(true) bool(true) --Iteration 6-- bool(true) bool(true) bool(true) --Iteration 7-- bool(false) bool(false) bool(false) --Iteration 8-- bool(false) bool(false) bool(false) --Iteration 9-- bool(false) bool(false) bool(false) --Iteration 10-- bool(false) bool(false) bool(false) --Iteration 11-- bool(false) bool(false) bool(false) --Iteration 12-- bool(false) bool(false) bool(false) --Iteration 13-- bool(false) bool(false) bool(false) --Iteration 14-- bool(false) bool(false) bool(false) --Iteration 15-- bool(false) bool(false) bool(false) --Iteration 16-- bool(false) bool(false) bool(false) --Iteration 17-- bool(false) bool(false) bool(false) --Iteration 18-- bool(false) bool(false) bool(false) --Iteration 19-- bool(false) bool(false) bool(false) --Iteration 20-- bool(false) bool(false) bool(false) --Iteration 21-- bool(false) bool(false) bool(false) --Iteration 22-- bool(false) bool(false) bool(false) --Iteration 23-- bool(false) bool(false) bool(false) --Iteration 24-- bool(false) bool(false) bool(false) --Iteration 25-- bool(false) bool(false) bool(false) --Iteration 26-- bool(false) bool(false) bool(false) --Iteration 27-- bool(false) bool(false) bool(false) --Iteration 28-- bool(false) bool(false) bool(false) --Iteration 29-- bool(false) bool(false) bool(false) --Iteration 30-- bool(false) bool(false) bool(false) --Iteration 31-- bool(false) bool(false) bool(false) --Iteration 32-- bool(false) bool(false) bool(false) --Iteration 33-- bool(false) bool(false) bool(false) --Iteration 34-- bool(false) bool(false) bool(false) --Iteration 35-- bool(false) bool(false) bool(false) --Iteration 36-- bool(false) bool(false) bool(false) --Iteration 37-- bool(false) bool(false) bool(false) --Iteration 38-- bool(false) bool(false) bool(false) --Iteration 39-- bool(false) bool(false) bool(false) --Iteration 40-- bool(false) bool(false) bool(false) --Iteration 41-- bool(false) bool(false) bool(false) --Iteration 42-- bool(false) bool(false) bool(false) --Iteration 43-- bool(false) bool(false) bool(false) --Iteration 44-- bool(false) bool(false) bool(false) --Iteration 45-- bool(false) bool(false) bool(false) --Iteration 46-- bool(false) bool(false) bool(false) --Iteration 47-- bool(false) bool(false) bool(false) --Iteration 48-- bool(false) bool(false) bool(false) --Iteration 49-- bool(false) bool(false) bool(false) --Iteration 50-- bool(false) bool(false) bool(false) --Iteration 51-- bool(false) bool(false) bool(false) --Iteration 52-- bool(false) bool(false) bool(false) --Iteration 53-- bool(false) bool(false) bool(false) --Iteration 54-- bool(false) bool(false) bool(false) *** Testing error conditions *** Warning: is_int() expects exactly 1 parameter, 0 given in %s on line %d bool(false) Warning: is_integer() expects exactly 1 parameter, 0 given in %s on line %d bool(false) Warning: is_long() expects exactly 1 parameter, 0 given in %s on line %d bool(false) Warning: is_int() expects exactly 1 parameter, 2 given in %s on line %d bool(false) Warning: is_integer() expects exactly 1 parameter, 2 given in %s on line %d bool(false) Warning: is_long() expects exactly 1 parameter, 2 given in %s on line %d bool(false) Done