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.
我想使用 POST 发送数据,而不创建表单。我知道很多人会建议会议。但这是我的用例。
一个 php 脚本创建一个以时间戳为名称的文件夹。时间戳会传递到所有后续调用的页面,这些页面将存储与该事务、日志等相关的文件。如果我使用会话并且用户打开另一个应用程序实例,会话时间将发生变化并造成很多骚扰。
那么有没有一种方法可以让我在不需要POST表格的情况下打发时间。
谢谢拉维
通过 jquery 发送时间戳:
$(document).ready(function() { $.post("index.php",{"timestamp":new Date().getTime()}); });
在 PHP 中:
if (isset($_POST["timestamp"])) { $timestamp = $_POST["timestamp"]; }