File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / array / array_shift_basic.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:03 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Test array_shift() function : basic functionality 
--FILE--
<?php
/* Prototype  : mixed array_shift(array &$stack)
 * Description: Pops an element off the beginning of the array 
 * Source code: ext/standard/array.c
 */

/*
 * Test basic functionality of array_shift()
 */

echo "*** Testing array_shift() : basic functionality ***\n";

$array = array('zero', 'one', '3' => 'three', 'four' => 4);
echo "\n-- Before shift: --\n";
var_dump($array);

echo "\n-- After shift: --\n";
echo "Returned value:\t";
var_dump(array_shift($array));
echo "New array:\n";
var_dump($array);

echo "Done";
?>
--EXPECTF--
*** Testing array_shift() : basic functionality ***

-- Before shift: --
array(4) {
  [0]=>
  string(4) "zero"
  [1]=>
  string(3) "one"
  [3]=>
  string(5) "three"
  ["four"]=>
  int(4)
}

-- After shift: --
Returned value:	string(4) "zero"
New array:
array(3) {
  [0]=>
  string(3) "one"
  [1]=>
  string(5) "three"
  ["four"]=>
  int(4)
}
Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>