在PHP中發送POST請求并獲取數據值的方式如下:
$username = $_POST['username'];
$postData = file_get_contents('php://input');
parse_str($postData, $postArray);
然后可以通過$postArray數組來獲取POST請求中的數據值。例如,如果POST請求中有一個名為"username"的數據值,可以使用$postArray[‘username’]來獲取該值。例如:
$username = $postArray['username'];
注意:以上方法僅當POST請求的Content-Type為application/x-www-form-urlencoded時有效。如果POST請求的Content-Type為其他類型(例如application/json),則需要根據具體情況使用其他方法來獲取數據值。