Php versions – Why does Chrome & Edge reject Set-Cookie as having invalid syntax, but not FireFox
I am setting a header with php's setcookie like: setcookie('xxx', 'xxx', ['path'=>'/', 'samesite'=>'Strict', 'secure'=>1, 'httponly'=>1]); In their developer tool, both Chrome and Edge show: xxx=xxx; path=/; secure; HttpOnly; SameSite=Strict with an orange triangle which states: 'This Set-Cookie header had a…