Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 wordpress 中设置一个 cookie 来跟踪推荐。该链接将以 domain.com/?ref_id 的形式出现,并且应该通过指向 domain.com/subfolder/?ref_id 的链接
我知道这应该很简单,所以请原谅我对此事的无知。谢谢, ,
约翰。
约翰,你想做类似于以下的事情:
$ref_id = $_GET['ref_id']; $expire=time()+60*60*24*30; setcookie("referral_id", $ref_id, $expire, '/', '.yourdomain.com');
不要忘记清理您从 $ref_id 中提取的查询字符串