Searched refs:array_shift (Results 1 – 25 of 31) sorted by relevance
12
2 Test array_shift() function : error conditions - Pass incorrect number of args5 /* Prototype : mixed array_shift(array &$stack)11 * Pass incorrect number of arguments to array_shift() to test behaviour14 echo "*** Testing array_shift() : error conditions ***\n";17 echo "\n-- Testing array_shift() function with Zero arguments --\n";18 var_dump( array_shift() );20 //Test array_shift with one more than the expected number of arguments24 var_dump( array_shift($stack, $extra_arg) );29 *** Testing array_shift() : error conditions ***31 -- Testing array_shift() function with Zero arguments --[all …]
2 Test array_shift() function : usage variations - maintaining referenced elements5 /* Prototype : mixed array_shift(array &$stack)19 echo "*** Testing array_shift() : usage variations ***\n";21 // using only array_shift:22 echo "\n-- Reference result of array_shift: --\n";25 $b =& array_shift($array);30 echo "\n-- Reference first element before array_shift: --\n";34 array_shift($array);41 *** Testing array_shift() : usage variations ***43 -- Reference result of array_shift: --[all …]
2 Test array_shift() function : usage variations - Pass different data types as $stack arg5 /* Prototype : mixed array_shift(array &$stack)11 * Pass different data types as $stack argument to array_shift() to test behaviour14 echo "*** Testing array_shift() : usage variations ***\n";84 // loop through each element of $inputs to check the behavior of array_shift()88 var_dump( array_shift($input) );97 *** Testing array_shift() : usage variations ***146 Warning: array_shift() expects parameter 1 to be array, null given in %s on line %d151 Warning: array_shift() expects parameter 1 to be array, null given in %s on line %d206 Warning: array_shift() expects parameter 1 to be array, null given in %s on line %d[all …]
2 Test array_shift() function : usage variations - call recursively5 /* Prototype : mixed array_shift(array &$stack)11 * Use the result of one call to array_shift 12 * as the $stack argument of another call to array_shift()16 echo "*** Testing array_shift() : usage variations ***\n";22 var_dump(array_shift(array_shift(array_shift($stack))));27 $result1 = array_shift($stack);28 $result2 = array_shift($result1);29 var_dump(array_shift($result2));34 *** Testing array_shift() : usage variations ***
2 Test array_shift() function : usage variations - position of internal pointer5 /* Prototype : mixed array_shift(array &$stack)11 * Test that the internal pointer is reset after calling array_shift()14 echo "*** Testing array_shift() : usage variations ***\n";18 echo "\n-- Call array_shift() --\n";19 var_dump($result = array_shift($stack));27 *** Testing array_shift() : usage variations ***29 -- Call array_shift() --
2 Test array_shift() function : basic functionality 5 /* Prototype : mixed array_shift(array &$stack)11 * Test basic functionality of array_shift()14 echo "*** Testing array_shift() : basic functionality ***\n";22 var_dump(array_shift($array));29 *** Testing array_shift() : basic functionality ***
2 Test array_shift() function : usage variations - Referenced arrays5 /* Prototype : mixed array_shift(array &$stack)11 * Test how array_shift when passed:16 echo "*** Testing array_shift() : usage variations ***\n";23 var_dump(array_shift($copied_array));32 var_dump(array_shift($new_array[0]));41 *** Testing array_shift() : usage variations ***
2 Test array_shift() function5 /* Prototype: mixed array_shift( array &array );9 array_shift($GLOBALS);37 var_dump( array_shift() );40 var_dump( array_shift($number) );43 var_dump( array_shift($str) );46 var_dump( array_shift($mixed_array[1],$mixed_array[2]) );49 var_dump( array_shift($empty_array) );59 var_dump( array_shift($sub_array) );77 var_dump( array_shift($mixed_array[1]) );[all …]
2 Test array_shift() function : usage variations - multi-dimensional arrays5 /* Prototype : mixed array_shift(array &$stack)14 echo "*** Testing array_shift() : usage variations ***\n";27 var_dump(array_shift($stack_first));33 var_dump(array_shift($stack_last[2]));40 *** Testing array_shift() : usage variations ***
2 Bug #22088 (array_shift() leaves next index to be +1 too much)7 $last = array_shift ($a);12 $last = array_shift ($a);
2 Test array_shift() function : usage variations - Pass arrays of different data types5 /* Prototype : mixed array_shift(array &$stack)11 * Pass arrays where values are of one data type to test behaviour of array_shift()14 echo "*** Testing array_shift() : usage variations ***\n";108 // loop through each element of $inputs to check the behavior of array_shift112 var_dump( array_shift($input) );123 *** Testing array_shift() : usage variations ***
2 Test array_shift() function : usage variations - Pass array with different data types as keys5 /* Prototype : mixed array_shift(array &$stack)11 * Pass arrays with different data types as keys to test how array_shift() re-assigns keys14 echo "*** Testing array_shift() : usage variations ***\n";95 // loop through each element of $inputs to check the behavior of array_shift()99 var_dump( array_shift($input) );107 *** Testing array_shift() : usage variations ***
11 var_dump(array_shift(array_shift($stack)));16 var_dump(array_shift(array_shift($stack)));
36 array_shift($_SERVER["argv"]);
315 array_shift($split); // the first part isn't relevant
14 $handler = array_shift($handlers);
24 array_shift($argv);
23 $sep = array_shift($args);
26 $sep = array_shift($args);
23 array_shift( $regs );
63 PHP_FUNCTION(array_shift);
130 return array_shift($v);
83 return array_shift($a);
37 array_shift($test);
67 return array_shift($this->_llist);
Completed in 23 milliseconds