I send POST param with name "param.name"
If I read the php://input everything ok, but if I try to get param from an array $_POST['param.name'] that it is absent because the dot was replaced to underscore and I need to get param this way $_POST['param_name'].
Maybe some settings in PHP I should tune...
I use PHP 7.4.15