1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/tests/basic/013.phpt
2006-05-25 10:38:01 +00:00

21 lines
253 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]=>
string(1) "1"
}
--UEXPECT--
array(1) {
[0]=>
unicode(1) "1"
}