我在http://sakura-city.info
地址有一个网站。
在该站点中,我有一条路线:
Route::post('/yandex','GirlsController@reciverYandex');
控制器:
public function reciverYandex(Request $request){
echo 'yandex';
Storage::put('file.txt','Test');
}
我发送了发帖请求地址:sakura-city.info/yandex
但是在file.txt
中没有新文本。
文件路径:public/file.txt
我的网站没有收到请求吗?
答案 0 :(得分:0)
public function reciverYandex(Request $request){
$date= Carbon::now();
File::append(base_path().'/public/file.txt', 'data2'.PHP_EOL);
File::append(base_path().'/public/file.txt','oprration_id:'. $request['operation_id'].','.'datetime: '.$request['datetime'].','.$request['sha1_hash'].','.$request['currency'].',lable:'.$request['lable'].','.$date.PHP_EOL);