search
HomeBackend DevelopmentPHP TutorialDifferences and examples of usage between php5 Cookie and Session

  1. SetCookie("Cookie", "cookievalue",time()+3600, "/forum", ".jbxue.com", 1);
Copy code

1), receive and process Cookies PHP has very good support for receiving and processing cookies. It is completely automatic and has the same principle as FORM variables. It is very simple. For example, if you set a Cookie named MyCookier, PHP will automatically analyze it from the HTTP header received by the WEB server and form a variable like an ordinary variable named $myCookie. The value of this variable is the value of the Cookie. The same applies to arrays. Another way is to reference PHP's global variable $HTTP_COOKIE_VARS array. Examples are as follows: (assuming these have been set in previous pages and are still valid)

  1. echo $MyCookie;
  2. echo $CookieArray[0];
  3. echo $_COOKIE["MyCookie"];
  4. echo $HTTP_COOKIE_VARS["MyCookie"];
  5. ?>
Copy the code

2) and delete cookies To delete an existing cookie, there are two ways:

  1. 1.SetCookie("Cookie", "");
  2. 2.SetCookie("Cookie", "value" , ​​time()-1 / time() );
Copy code

3) Restrictions on the use of cookies 1. It must be set before the content of the HTML file is output; 2. Different browsers handle cookies inconsistently, and sometimes incorrect results may occur. 3. The restriction is on the client side. The maximum number of cookies that can be created by a browser is 30, and each cookie cannot exceed 4KB. The total number of cookies that can be set by each WEB site cannot exceed 20.

3. Session configuration and application

  1. session_start(); //Initialize session. Need to be in the file header
  2. $_SESSION[name]=value; //Configure Seeeion
  3. echo $_SESSION[name]; //Use session
  4. isset($_SESSION[name]); //Judge
  5. unset($_SESSION[name]); //Delete
  6. session_destroy(); //Consume all sessions
  7. ?>
Copy code

Note: session_register(), session_unregister, session_is_registered are no longer used under php5.

1. Examples of cookie usage

  1. if($_GET['out'])

  2. { //Used to log out cookies
  3. setcookie('id',"");
  4. setcookie('pass ',"");
  5. echo "<script>location.href='login.php'</script>"; //Because cookies do not take effect in time, they will only take effect when you refresh them again, so after logging out Let the page refresh automatically.
  6. }
  7. if($_POST['name']&&$_POST['password']) //If the variables username and password exist, set cookies below

  8. { //Used Set cookies
  9. setcookie('id',$_POST['name'],time()+3600);
  10. setcookie('pass',$_POST['password'],time()+3600);
  11. echo "< ;script>location.href='login.php'"; //Let cookies take effect in time
  12. }

  13. if($_COOKIE['id']&&$_COOKIE[ 'pass'])
  14. { //After cookies are set successfully, used to display cookies
  15. echo "Login successful!
    Username: ".$_COOKIE['id']."
    Password: ".$_COOKIE['pass'];
  16. echo "
    ";
  17. echo "Log out cookies"; //Within double quotation marks, if there are more quotation marks, single quotation marks are required.
  18. }
  19. ?>


  20. Password:
< ;br/>

Copy code

2. Session usage example

  1. //session usage example

  2. session_start();//Start session, must be placed in the first sentence, otherwise an error will occur.
  3. if($_GET['out'])
  4. {
  5. unset($_SESSION['id']);

  6. unset($_SESSION['pass']);
  7. }
  8. if($_POST['name']&&$_POST['password'])

  9. {
  10. //For setting session
  11. $_SESSION['id']=$_POST['name' ];
  12. $_SESSION['pass']=$_POST['password'];
  13. }
  14. if($_SESSION['id']&&$_SESSION['pass'])

  15. {
  16. echo "Login successful!
    User ID: ".$_SESSION['id']."
    User password: ".$_SESSION['pass'];
  17. echo "< ;br />";
  18. echo "Log out session";
  19. }
  20. ?>
Copy code
  1. User ID:


  2. Password:


Copy code


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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use