Are you interested in purchasing the entire website? If so, we will include an additional premium domain (freetimelearn.com) at no extra cost along with this domain.
Mail : freetimelearn@gmail.com
WhatsApp : +919966463846
use Symfony\Component\HttpFoundation\Response;
$response = new Response(
'Content',
Response::HTTP_OK,
['content-type' => 'text/html']
);
$response->setContent('Hello World');
// the headers public attribute is a ResponseHeaderBag
$response->headers->set('Content-Type', 'text/plain');
$response->setStatusCode(Response::HTTP_NOT_FOUND);
setCharset() method :$response->setCharset('ISO-8859-1');
$response->prepare($request);
send() :$response->send();