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.
12 lines
259 B
12 lines
259 B
|
1 month ago
|
<?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);
|
||
|
|
exit($str_cookie);
|