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.
在使用 Buzz php 轻量级客户端获取页面之前,是否可以为 cookie 设置特定值?https://github.com/kriswallsmith/Buzz
我想splash = 0为特定的主机设置,以避免他们有弹出窗口。
splash = 0
试试这个:
$request = new \Buzz\Message\Request('GET', '/', 'domain.com'); $request->addHeader('Cookie: splash=0');