Allowed memory size of 33554432 bytes exhausted (tried to allocate 43148176 bytes) in php

前端 未结 21 1729
猫巷女王i
猫巷女王i 2020-11-21 22:14

This error message is being presented, any suggestions?

Allowed memory size of 33554432 bytes exhausted (tried to allocate 43148176 bytes) in php

21条回答
  •  傲寒
    傲寒 (楼主)
    2020-11-21 22:59

    if you are using laravel then use this ways

    public function getClientsListApi(Request $request){ print_r($request->all()); //for all request print_r($request->name); //for all name }

    instead of

    public function getClientsListApi(Request $request){ print_r($request); // it show error as above mention }

提交回复
热议问题