????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.118.160.215 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/array/ |
Upload File : |
--TEST-- Test array_sum() function : usage variations - 'input' array with unexpected values as array element --FILE-- <?php /* Prototype : mixed array_sum(array $input) * Description: Returns the sum of the array entries * Source code: ext/standard/array.c */ /* * Testing array_sum() with array having other than numeric entries * strings, bool, null, subarrays & objects */ echo "*** Testing array_sum() : array with unexpected entries ***\n"; // empty array $input = array(); echo "-- empty array --\n"; var_dump( array_sum($input) ); // string array $input = array('Apple', 'Banana', 'Carrot', 'Mango', 'Orange'); echo "-- array with string values --\n"; var_dump( array_sum($input) ); // bool array $input = array( true, true, false, true, false); echo "-- array with bool values --\n"; var_dump( array_sum($input) ); // array with null entry $input = array(null, NULL); echo "-- array with null values --\n"; var_dump( array_sum($input) ); // array with subarray $input = array( array(1, 2), array(), array(0) ); echo "-- array with subarrays --\n"; var_dump( array_sum($input) ); class MyClass { public $value; public function __construct($value) { $this->value = $value; } } // array of objects $input = array( new MyClass(2), new MyClass(5), new MyClass(10), new MyClass(0) ); echo "-- array with object values --\n"; var_dump( array_sum($input) ); // Mixed values $input = array( 5, -8, 7.2, -1.2, "10", "apple", 'Mango', true, false, null, NULL, array( array(1,2), array(0), array())); echo "-- array with mixed values --\n"; var_dump( array_sum($input) ); echo "Done" ?> --EXPECTF-- *** Testing array_sum() : array with unexpected entries *** -- empty array -- int(0) -- array with string values -- int(0) -- array with bool values -- int(3) -- array with null values -- int(0) -- array with subarrays -- int(0) -- array with object values -- int(0) -- array with mixed values -- float(14) Done