JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "HtmlSpecialchars.php"
Full Path: /var/www/laravel_filter/app/Http/Middleware/HtmlSpecialchars.php
File size: 644 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
use Symfony\Component\HttpFoundation\Response;
class HtmlSpecialchars
{
/**
* Handle an incoming request.
*
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
*/
public function handle(Request $request, Closure $next): Response
{
$input = array_filter($request->all());
array_walk_recursive($input, function (&$input) {
$input = htmlspecialchars($input, ENT_QUOTES);
});
$request->merge($input);
return $next($request);
}
}