How to remove slashes from json response in laravel?

Member

by aubrey , in category: PHP CMS , 14 days ago

How to remove slashes from json response in laravel?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by jasen , 13 days ago

@aubrey 

You can remove slashes from the JSON response in Laravel by using the stripslashes function. You can use this function to remove any backslashes from the JSON response before returning it to the client.


Here's an example of how you can remove slashes from a JSON response in Laravel:

1
2
3
4
5
6
7
8
// Get the JSON response
$response = json_encode($data);

// Remove slashes from the JSON response
$response = stripslashes($response);

// Return the updated JSON response
return response()->json($response, 200);


By using the stripslashes function on the JSON response, you can remove any slashes that may have been added during the encoding process. This will ensure that the JSON response is clean and can be easily parsed by the client.