What is the difference between the request parameters obtained by Input:all () in the laravel framework and the native $REQUEST acquisition parameters in php?

what is the difference between the request parameters obtained by Input:all () in the laravel framework and the native $REQUEST acquisition parameters in php?
$input = Input:all ();
$input ="{"P_UserId": "10", "P_OrderId": "23027220180330184207", "P_CardId": "qw12345", "P_CardPass": null, "P_FaceValue": "0.010", "P_ChannelId": "alipay", "P_Subject": null, "P_Price": null, "P_Quantity": null, "P_ErrCode": "0", "P_Description": "test", "P_Notic": "240", "P_PostKey": "e83053855f6f11eb154af9c5deaf6341"}";

$_ REQUEST ="{"P_UserId": "10", "P_OrderId": "92986320180330185035", "P_FaceValue": "0.010", "P_ErrCode": "0", "P_PostKey": "9ccc3f6a438377853d511d17d6bfafc9"}";

from a data point of view, Input:all () also fetches the empty data, while $_ REQUEST Filter has the empty data. What is the specific difference?

Feb.28,2021
There is an error in the

title. The data is the same. $input=' {"P_UserId": "10", "P_OrderId": "92986320180330185035", "P_FaceValue": "0.010", "P_ErrCode": "0", "P_PostKey": "9ccc3f6a438377853d511d17d6bfafc9"}';

Menu