You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
14 lines
302 B
<?php
|
|
// 获取用户cookie值
|
|
$user = $_GET['user'];
|
|
if(empty($user)){
|
|
exit('');
|
|
}
|
|
$cookie_path = __DIR__ . '/../cookie_file/'.$user.'.txt';
|
|
if(!file_exists($cookie_path)){
|
|
exit('');
|
|
}
|
|
$str_cookie = file_get_contents($cookie_path);
|
|
//删除cookie文件
|
|
unlink($cookie_path);
|
|
exit($str_cookie);
|