php-src/ext/standard/tests/array/array_push_basic.phpt
Steph Fox 833f4150a1 - killed off UEXPECT
- could someone please fix var_export2.phpt? NUL is corrupted, can't fix here
2008-05-26 23:36:10 +00:00

64 lines
1.2 KiB
PHP

--TEST--
Test array_push() function : basic functionality
--FILE--
<?php
/* Prototype : int array_push(array $stack, mixed $var [, mixed $...])
* Description: Pushes elements onto the end of the array
* Source code: ext/standard/array.c
*/
/*
* Test basic functionality of array_push with indexed and associative arrays
*/
echo "*** Testing array_push() : basic functionality ***\n";
$array = array ('zero', 'one', 'two');
$var1 = 'three';
$var2 = 'four';
echo "\n-- Push values onto an indexed array --\n";
var_dump(array_push($array, $var1, $var2));
var_dump($array);
$array_assoc = array ('one' => 'un', 'two' => 'deux');
echo "\n-- Push values onto an associative array --\n";
var_dump(array_push($array_assoc, $var1, $var2));
var_dump($array_assoc);
echo "Done";
?>
--EXPECT--
*** Testing array_push() : basic functionality ***
-- Push values onto an indexed array --
int(5)
array(5) {
[0]=>
unicode(4) "zero"
[1]=>
unicode(3) "one"
[2]=>
unicode(3) "two"
[3]=>
unicode(5) "three"
[4]=>
unicode(4) "four"
}
-- Push values onto an associative array --
int(4)
array(4) {
[u"one"]=>
unicode(2) "un"
[u"two"]=>
unicode(4) "deux"
[0]=>
unicode(5) "three"
[1]=>
unicode(4) "four"
}
Done