我想使用PHP将值存储到会话中
例如,$id=10我想将此值存储在会话中
$id=10
我试过了
$pid= session_id($id); echo $pid;
和
$pid = $_SESSION['$id'];
但没有工作
php
php ×1