I want to access body parameters in PUT request. Is there any easy way to achieve it?
In POST requests I use $_POST or better filter_input_array(INPUT_POST), but it does not seem to work using PUT request.
$_POST
filter_input_array(INPUT_POST)
I am not using any framework.