Form input field names containing square brackets like field[index]

前端 未结 3 1415
青春惊慌失措
青春惊慌失措 2020-11-28 13:17

I\'ve seen a lot of PHP code that handles form input in which the input field names contain square brackets. I understand that this somehow results in PHP arrays when a PHP

3条回答
  •  甜味超标
    2020-11-28 14:09

    What is the mechanism behind? At which point this names that merely contain brackets are converted to arrays? Is this a feature of the HTPP protocol? Of web servers? Of the PHP language?>

    This is a feature of the PHP language. In fact, the HTTP protocol does not forbid the use of multiple identical GET/POST parameters. According to the HTTP spec, the following:

    foo=bar&foo=baz
    

    Should not result in foo == baz. These are two parameters with two different values. However, PHP will overwrite the former foo with the latest, resulting in $_POST['foo'] == 'baz', even if they could be parsed separately.

    Continuing the previous question, is this a commonly used hack or a normal programming tool?

    It depends on the point of view. In the PHP world, it is completely normal, as the language does not support the specification of multiple parameters of the same name without using the brackets []. In the HTTP world though, foo != foo[].

    What are (all) the rules of using brackets in input field names?

    The same as PHP arrays, except that you don't have to quote string keys.

    Can multidimensional arrays be created this way?

    Yes, you can.

提交回复
热议问题