0
<?php
    $so = array('marke'=> $_GET["marke"],
                  'farbe'=> $_GET["farbe"],
                  'sort'=> $_GET["sort"]);

    $parameter = http_build_query($so);

    $unsetfarbe = unset($parameter['farbe']);

?>

サーバーエラーが発生します。何が問題なのですか?

4

2 に答える 2

3

$parameter is not an array. It is a string that your created using http_build_query(). So you're trying to access a variable that doesn't exist ($parameter['farbe']).

于 2013-09-25T15:27:56.383 に答える