1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/tests/basic/013.phpt
2008-05-26 15:52:06 +00:00

16 lines
204 B
PHP

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