简体   繁体   中英

POST var on PHP

If this is the vam dump of Request (var_dump($_REQUEST);):

array(1) {
  ["gift_edit"]=>
  array(11) {
    ["name"]=>
    string(19) "IBM da colezionista"
    ["description"]=>
    string(0) ""
    ["validbegin"]=>
    array(3) {
      ["day"]=>
      string(2) "31"
      ["month"]=>
      string(1) "1"
      ["year"]=>
      string(4) "2013"
    }
    ["validend"]=>
    array(3) {
      ["day"]=>
      string(1) "3"
      ["month"]=>
      string(1) "3"
      ["year"]=>
      string(4) "2015"
    }
    ["redemption"]=>
    string(13) "1234567888844"
    ["points"]=>
    string(4) "1200"
    ["price"]=>
    string(4) "6000"
    ["discount"]=>
    string(2) "20"
    ["codelist"]=>
    string(33) "unoperibm
dueperibm
treperibm
"
    ["amount"]=>
    string(0) ""
    ["_token"]=>
    string(40) "f2389c3d302630a624c10660aac218d279953d06"
  }
}

How do you retrieve codelist ?

$_REQUEST['gift_edit']['codelist']$_POST['gift_edit']['codelist']

您可以使用以下代码访问它。

$_REQUEST['gift_edit']['codelist']

尝试:

$test = $_REQUEST['gift_edit']['codelist'];   

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM