1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/tests/basic/015.phpt
2008-05-26 15:52:06 +00:00

16 lines
216 B
PHP

--TEST--
POST Method test and arrays - 3
--SKIPIF--
<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
--POST--
a[]=1&a[0]=5
--FILE--
<?php
var_dump($_POST['a']);
?>
--EXPECT--
array(1) {
[0]=>
unicode(1) "5"
}