返回列表 發帖

運用session做計數器

  1. <?php
  2.     header('Content-Type:text/html; charset=utf-8');
  3.     session_start();
  4.     if(empty($_SESSION['counter'])){    //empty:判斷變數是否為空值
  5.         //為空值
  6.         //echo '沒有值';
  7.         $_SESSION['counter'] = 1;
  8.     }else{
  9.         //不為空值
  10.         //echo '有值';
  11.         //$_SESSION['counter'] = $_SESSION['counter'] + 1;
  12.         //$_SESSION['counter']+=1;
  13.         $_SESSION['counter']++;
  14.     }
  15.     echo $_SESSION['counter'];

  16. ?>
複製代碼
May

返回列表