Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$_POST 変数のサブ配列の 1 つに等しい変数を設定しようとしています。
$array[] = $_POST['contact-info']; echo $array['email'];
ただし、NULL がエコーされるため機能しません。
助言がありますか?
このサブ配列を変数に割り当てるために角括弧は必要ありません。
$array = $_POST['contact-info']; echo $array['email'];