Home  >  Article  >  What is a response object

What is a response object

青灯夜游
青灯夜游Original
2019-05-10 11:37:527229browse

The Response object refers to an object used to dynamically respond to client requests, control the information sent to the user, and dynamically generate a response. The Response object only provides a data collection cookie, which is used to write cookie values ​​on the client side.

What is a response object

The Response object is an object used to dynamically respond to client requests, control the information sent to the user, and dynamically generate a response. The Response object only provides a data collection cookie, which is used to write cookie values ​​on the client side. If the specified cookie does not exist, create it. If present, it will be updated automatically. The results are returned to the client browser.

The Response object is used to dynamically respond to client requests and return dynamically generated response results to the client browser. Use the Response object to send information directly to the browser, redirect the browser to another URL or set the value of a cookie, etc.

Grammar format:

Response.Cookies(CookieName)[(key)|.attribute]=value

The CookiesName here is the name of the specified Cookie. If Key is specified, the Cookie is a dictionary. The Attribute attribute includes Domain and Expires. ,HasKeys,Path,Secure.

response method:

●Write: Send various data that the browser can process to the client, including: html code, script programs, etc.

● Redirect: response.redirect("url") is used to redirect to another web page on the server side.

●End: Used to terminate the script program.

● Clear: When talking about the Clear method, we must mention the Buffer attribute of the response. The Buffer attribute is used to set whether the server will output the page to the buffer first.

The syntax is:

Response.Buffer=True/False

● Flush: When the value of Buffer is True, the Flush method is used to immediately output the current page content in the buffer to the client.

The above is the detailed content of What is a response object. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn