i Have like 30 uploads using postman. on the receiving endpoint function i tried to print_r all the uploads that were supposed to be received by PHP
public function capture() {
print_r($_FILES);exit;
}
out of the 30 uploads only 20 got printed. There's no limit in the $_FILES super variables right? is there anyway that I can capture all 30 uploads via PHP ?