我已經看到了通過以多種方式捲曲選項後的數據,如與鍵值對的數組,像這樣的字符串:"username=user&password=pass"
但我來到翻過一個不同類型的格式從而出現奇我也許有些人可以澄清這一點。它看起來如下:格式捲曲POST字符串
$sPost = "session[username_or_email]=$username&session[password]=$password&return_to_ssl=true&scribe_log=&redirect_after_login=%2F&authenticity_token=$authenticity_token";
curl_setopt($ch, CURLOPT_POSTFIELDS, $sPost);
它爲什麼看起來這樣「session [username_or_email]」?
很好解釋說非常感謝你! – polymorph