mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
18 lines
213 B
PHP
18 lines
213 B
PHP
--TEST--
|
|
POST Method test and arrays - 5
|
|
--POST--
|
|
a[]=1&a[a]=1&a[b]=3
|
|
--FILE--
|
|
<?php
|
|
var_dump($_POST['a']);
|
|
?>
|
|
--EXPECT--
|
|
array(3) {
|
|
[0]=>
|
|
string(1) "1"
|
|
["a"]=>
|
|
string(1) "1"
|
|
["b"]=>
|
|
string(1) "3"
|
|
}
|