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