I have a web application developed in Laravel 5.0, which receives a POST request from another application. The data sent is a JSON with a relatively large amount of information, and when I get this request and access the data via Request::all()
depending on the size I'm losing some of the data.
We did a test taking this data via file_get_contents()
, that is, native PHP and we realized that the data arrives complete.
Initially we believe that you have some configuration in PHP.INI regarding the size that a variable can accept.
I would like to know if I'm on the right track or if I've already gone through this situation and how it's been resolved.