晚上好。 这是我的代码:
页面js.js
window.setInterval(function () {
$.ajax({
async: true,
cache:false,
type: 'POST',
url:'call.php',
data:{
request: 'validation_session'
},
dataType: "text",
success: function(item,key){
console.log(item);
},
error: function(e){
console.log(e);
}
});
},3000);
页面Call.php
<?php
session_start();
if(isset($_POST['request'])){
$_SESSION['test']['test1'] = true;
}
if(isset($_SESSION['test']['test1'])){
echo 'okay';
}
?>
此代码只是我真实代码的一小部分,但是为什么不创建$ _session? 对不起,我的英语。