????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.135.204.121 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_search() function : usage variations - different haystack values --FILE-- <?php /* * Prototype : mixed array_search ( mixed $needle, array $haystack [, bool $strict] ) * Description: Searches haystack for needle and returns the key if it is found in the array, FALSE otherwise * Source Code: ext/standard/array.c */ /* Test array_search() with different possible haystack values */ echo "*** Testing array_search() with different haystack values ***\n"; $misc_array = array ( 'a', 'key' =>'d', 3, ".001" =>-67, "-.051" =>"k", 0.091 =>"-.08", "e" =>"5", "y" =>NULL, NULL =>"", 0, TRUE, FALSE, -27.39999999999, " ", "abcd\x00abcd\x00\abcd\x00abcdefghij", "abcd\nabcd\tabcd\rabcd\0abcd" ); $array_type = array(TRUE, FALSE, 1, 0, -1, "1", "0", "-1", NULL, array(), "PHP", ""); /* loop to do loose and strict type check of elements in $array_type on elements in $misc_array using array_search(); checking PHP type comparison tables */ $counter = 1; foreach($array_type as $type) { echo "-- Iteration $counter --\n"; //loose type checking var_dump( array_search($type,$misc_array ) ); //strict type checking var_dump( array_search($type,$misc_array,true) ); //loose type checking var_dump( array_search($type,$misc_array,false) ); $counter++; } echo "Done\n"; ?> --EXPECTF-- *** Testing array_search() with different haystack values *** -- Iteration 1 -- int(0) int(3) int(0) -- Iteration 2 -- string(1) "y" int(4) string(1) "y" -- Iteration 3 -- int(3) bool(false) int(3) -- Iteration 4 -- string(3) "key" int(2) string(3) "key" -- Iteration 5 -- int(3) bool(false) int(3) -- Iteration 6 -- int(3) bool(false) int(3) -- Iteration 7 -- int(2) bool(false) int(2) -- Iteration 8 -- int(3) bool(false) int(3) -- Iteration 9 -- string(1) "y" string(1) "y" string(1) "y" -- Iteration 10 -- string(1) "y" bool(false) string(1) "y" -- Iteration 11 -- int(2) bool(false) int(2) -- Iteration 12 -- string(1) "y" string(0) "" string(1) "y" Done