blob: 74aea48bf3088ced1d7c25bfaa5c179812ef7690 (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
--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
--UEXPECTF--
*** Testing array_shift() : basic functionality ***
-- Before shift: --
array(4) {
[0]=>
unicode(4) "zero"
[1]=>
unicode(3) "one"
[3]=>
unicode(5) "three"
[u"four"]=>
int(4)
}
-- After shift: --
Returned value: unicode(4) "zero"
New array:
array(3) {
[0]=>
unicode(3) "one"
[1]=>
unicode(5) "three"
[u"four"]=>
int(4)
}
Done
|