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.
我需要能够从 PHP 文件中“激活”/“触发”一个 URL。
通常,单击链接后,底层脚本会清除一些会话。由于存在问题的系统,我无法自己清除这些会话,因此我需要能够从我的 PHP 脚本中访问该 URL。
这可能吗?
我在想也许是 cURL 或 HTTP 请求?但即便如此,我也不确定到底是怎么回事。
这取决于您需要什么方法:
得到:
file_get_contents('http://some.url?params=val');
发布: https ://stackoverflow.com/a/871445/1285871