<?php
session_start();
.
.
$response = mask(json_encode(array('type'=>'system', 'message'=>$_SESSION['name'].' user has joined'))); //prepare json data
send_message($response); //notify all users about new connection
.
.
?>
然而,当我使用我的cmd在我的localhost中启动我的套接字服务器时,它给了我错误
未定义的索引'名称'
但我确信会议已经完美设定!
所以基本上我想知道的是我是否可以使用php在套接字中使用会话变量!是或否?
提前谢谢