I need to make a PATCH request to a PHP application.
PATCH
How can I get the data from that PATCH request inside that application?
If I h
You can get data with php://input stream wrapper:
$data = file_get_contents('php://input');
Also make sure your web server supports PATCH requests, some are configured to respond only to GET and POST.