當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP session_id()用法及代碼示例



定義和用法

會話或會話處理是一種使數據跨 Web 應用程序的各個頁麵可用的方法。這session_id()函數用於設置或檢索當前的自定義 id。

用法

session_id([$id]);

參數

Sr.No 參數及說明
1

name(Optional)

如果您想使用此方法設置會話的 id,這是一個表示會話 id 的字符串值。

返回值

這將返回一個字符串,表示當前會話的 id(如果有),或者如果當前會話沒有任何 id,則返回一個空字符串。

PHP版本

這個函數最初是在 PHP 版本 4 中引入的,並且適用於所有後續版本。

例子1

下麵的例子演示了session_id()函數。

<html>   
   <head>
      <title>Setting up a PHP session</title>
   </head>   
   <body>
      <?php  
         //Starting the session
         session_start();   
         $id = session_id();
         print("Session Id:".$id);
      ?>
   </body>   
</html>

執行上述 html 文件將顯示以下消息 -

Session Id:b9t3gprjtl35ms4sm937hj7s30

例子2

下麵是這個函數的另一個例子,在這裏我們有來自同一個會話中同一個應用程序的兩個頁麵。

session_page1.htm

<?php
   if(isset($_POST['SubmitButton'])){ 
      //Starting the session	
      $id = session_create_id();	
      session_id($id);
      print("\n"."Id:".$id);
      session_start();  
      $_SESSION['name'] = $_POST['name'];
      $_SESSION['age']  = $_POST['age'];	  
      session_commit();
   }
?>
<html>
   <body>
      <form action="#" method="post">
         <label for="fname">Enter the values click Submit and click on Next</label>
         <br><br><label for="fname">Name:</label>
         <input type="text" id="name" name="name"><br><br>
         <label for="lname">Age:</label>
         <input type="text" id="age" name="age"><br><br>           
         <input type="submit" name="SubmitButton"/>
         <?php 
            echo '<br><br /><a href="session_page2.htm">Next</a>';
         ?>
      </form>
   </body>
</html>

這將產生以下輸出 -

Session Start

按下提交後,頁麵將如下所示 -

Session Create Id

點擊時Next執行以下文件。

session_page2.htm

<html>   
   <head>
      <title>Second Page</title>
   </head>
   <body>
      <?php
         //Session started
         session_start();
         print("Values from the session with id:".session_id());
         echo "<br>";
         print($_SESSION['name']); 
         echo "<br>";
         print($_SESSION['age']);
      ?>   
   </body>   
</html>

這將產生以下輸出 -

Values from the session with id:brb9t3gprjtl35ms4sm937hj7s30
Krishna
30

例子3

您可以使用此函數創建自定義會話 ID,如下所示 -

<html>   
   <head>
      <title>Setting up a PHP session</title>
   </head>   
   <body>
      <?php  
         //Creating a custom session id
         session_id("my-id");
         //Starting the session
         session_start();   
         print("Id:".session_id());
      ?>
   </body>   
</html>

執行上述 html 文件將顯示以下消息 -

Id:my-id

相關用法


注:本文由純淨天空篩選整理自 PHP - session_id() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。