یک متغیر Session PHP را تغییر دهید(Modify a PHP Session Variable)
برای تغییر متغیر جلسه، فقط آن را بازنویسی کنید:
مثال
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<body>
<?php
// to change a session variable, just overwrite it
$_SESSION["favcolor"] = "yellow";
print_r($_SESSION);
?>
</body>
</html>