File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / basic / 020.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 4 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
POST Method test and arrays - 8 
--POST--
a[a[]]=1&a[b[]]=3
--FILE--
<?php
var_dump($_POST['a']); 
?>
--EXPECT--
array(2) {
  ["a["]=>
  string(1) "1"
  ["b["]=>
  string(1) "3"
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>