File: array_shift_variation8.phpt

package info (click to toggle)
php7.4 7.4.33-1%2Bdeb11u5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 176,664 kB
  • sloc: ansic: 707,264; php: 18,280; sh: 11,566; cpp: 7,661; javascript: 3,080; pascal: 2,764; yacc: 1,956; xml: 1,722; makefile: 674; perl: 315; awk: 193
file content (50 lines) | stat: -rw-r--r-- 1,465 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--TEST--
Test array_shift() function : usage variations - maintaining referenced elements
--FILE--
<?php
/* Prototype  : mixed array_shift(array &$stack)
 * Description: Pops an element off the beginning of the array
 * Source code: ext/standard/array.c
 */

/*
 * From a comment left by Traps on 09-Jul-2007 on the array_shift documentation page:
 * For those that may be trying to use array_shift() with an array containing references
 * (e.g. working with linked node trees), beware that array_shift() may not work as you expect:
 * it will return a *copy* of the first element of the array,
 * and not the element itself, so your reference will be lost.
 * The solution is to reference the first element before removing it with array_shift():
 */

echo "*** Testing array_shift() : usage variations ***\n";

// using only array_shift:
echo "\n-- Reference result of array_shift: --\n";
$a = 1;
$array = array(&$a);
$b =& array_shift($array);
$b = 2;
echo "a = $a, b = $b\n";

// solution: referencing the first element first:
echo "\n-- Reference first element before array_shift: --\n";
$a = 1;
$array = array(&$a);
$b =& $array[0];
array_shift($array);
$b = 2;
echo "a = $a, b = $b\n";

echo "Done";
?>
--EXPECTF--
*** Testing array_shift() : usage variations ***

-- Reference result of array_shift: --

Notice: Only variables should be assigned by reference in %s on line %d
a = 1, b = 2

-- Reference first element before array_shift: --
a = 2, b = 2
Done