PHP 将POST / GET分配给内部数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将POST / GET分配给内部数组相关的知识,希望对你有一定的参考价值。

<?php
// Loop through the fields in the POST and assign them to our internal variable.
// There are several special cases we need to handle differently, so we'll skip
// them for now.
foreach($_POST as $key=>$value) {
    switch($key) {
	case 'submit'; // Completely skip over the submit button
	case "field_1";
        case "/^a\ regex$/";
        case "field_20";
        default:
            $myArray[$key] = $value;
    }
}
?>

以上是关于PHP 将POST / GET分配给内部数组的主要内容,如果未能解决你的问题,请参考以下文章

PHP:在文件中记录错误但不将它们显示给 POST/GET 请求

将 jQuery 数组传递给 PHP (POST)

将 PHP $_POST 数组传递给 javascript/jQuery 以通过 ajax 发送回 PHP

将字符串数组作为 POST 传递给 PHP

将相同的键=>值对分配给PHP中的多个数组

Json 对象到 PHP 数组 - 不转换