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.
構造体で ajax 投稿データを使用する場合
そして、ここでコードからデータを取得します:
$_POST["post"];=> 結果は 979 です。問題ありません
$_POST["post"];
$_POST["href[href]"];=> 結果は 0 です。修正方法は?
$_POST["href[href]"];
ブラケット表記は、配列エントリの作成に使用されます。代わりにこれを使用してください:
$_POST["href"]["href"];
呼び出す$_POST["href"]と、連想配列が返されます。
$_POST["href"]
array( 'commentID' => 297980913637729, 'href' => 'http://dongcam.vn/t3927' );
これは多次元配列なので、次のようになります。