如果域名前加个点即可
例如

1
2
3
4
5
6
7
8
9
10
11
public function index()
{
$config = [
'path' => '/',
'domain' => '.iguojin.com',
];

cookie($config);
cookie('test', request()->domain(), 3600);
echo $_SERVER["HTTP_HOST"];
}