A cookie associated with a cross-site resource at https://cloudflare.com/ was set without the `SameSite` attribute. A future release of Chrome will only deliver cookies with cross-site requests if they are set with `SameSite=None` and `Secure`. You can review cookies in developer tools under Application>Storage>Cookies and see more details at https://www.chromestatus.com/feature/5088147346030592 and https://www.chromestatus.com/feature/5633521622188032.
我解决这个问题重要吗?我该如何解决这个问题?我在我的网站顶部添加了这个,但它没有解决任何问题。
<?php
header('Set-Cookie: cross-site-cookie=name; SameSite=None; Secure');
?>