Advertisement
LGHyourinmaru

Remove Value From Session By Value

Mar 2nd, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. $session = Yii::app()->session['products'];
  2.         if (($key = array_search($_GET["pid"], $session)) !== false) {
  3.             unset($session[$key]);
  4.             Yii::app()->session['products'] = $session;
  5.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement