将在 ajax 调用中工作的 Strtotime 函数
Strtotime function that will work in ajax call
我正在尝试在 php 中使用 strtotime 连接来自多个 select 框的日期和时间值,但是,我需要在我的 ajax 调用中包含这个转换后的时间戳变量.
代码:
<form>
<select id="month">
<option value="1">January</option>
</select>
<select id="day">
<option value="22">22</option>
</select>
<select id="year">
<option value="2020">2020</option>
</select>
<select id="time">
<option value="12:00:00">12:00</option>
</select>
<button id="submitNow">
</form>
$("#submitNow").click(function(e){
e.preventDefault();
var timestamp = /*need to basically do strtotime($month . "-" . $day . "-" . $year . " " . $time) */
var promises = [];
var promise;
$.when.apply($, promises).then(function() {
$.ajax({
type:'POST',
url:'url/test',
data:{timestamp:timestamp},
_token: '{{ csrf_token() }}',
success:function(data){
window.location.href = "/library";
}
});
});
});
所以基本上,在 PHP 中,我可以转储 strtotime($month . "-" . $day . "-" . $year . " " . $time)
并获取 1-22-2020 12:00:00 的 unix 时间戳,但我需要以某种方式(在 laravel) 这样我就可以在 ajax 调用
中提交时间戳 (1548158400)
最好的方法是什么?
Blade 仍然只是一个 php 文件 (name.blade.php),因此您应该能够做到这一点。
var timestamp = <?php echo strtotime($month . "-" . $day . "-" . $year . " " . $time); ?>
我正在尝试在 php 中使用 strtotime 连接来自多个 select 框的日期和时间值,但是,我需要在我的 ajax 调用中包含这个转换后的时间戳变量.
代码:
<form>
<select id="month">
<option value="1">January</option>
</select>
<select id="day">
<option value="22">22</option>
</select>
<select id="year">
<option value="2020">2020</option>
</select>
<select id="time">
<option value="12:00:00">12:00</option>
</select>
<button id="submitNow">
</form>
$("#submitNow").click(function(e){
e.preventDefault();
var timestamp = /*need to basically do strtotime($month . "-" . $day . "-" . $year . " " . $time) */
var promises = [];
var promise;
$.when.apply($, promises).then(function() {
$.ajax({
type:'POST',
url:'url/test',
data:{timestamp:timestamp},
_token: '{{ csrf_token() }}',
success:function(data){
window.location.href = "/library";
}
});
});
});
所以基本上,在 PHP 中,我可以转储 strtotime($month . "-" . $day . "-" . $year . " " . $time)
并获取 1-22-2020 12:00:00 的 unix 时间戳,但我需要以某种方式(在 laravel) 这样我就可以在 ajax 调用
最好的方法是什么?
Blade 仍然只是一个 php 文件 (name.blade.php),因此您应该能够做到这一点。
var timestamp = <?php echo strtotime($month . "-" . $day . "-" . $year . " " . $time); ?>