我正在尝试一个简单的测试,其中只有$checkpoint_date
不到 7 天的 javascript 才需要运行。
<?php
$checkpoint_date = '15-08-2013';
if (strtotime($checkpoint_date) < strtotime('-7 day')){
?>
<script> alert('hi'); </script>
<?php } ?>
alert
无论条件评估为真与否,它似乎都会运行。
我知道上述条件有效,因为我已经对其进行了测试:
if (strtotime($checkpoint_date) < strtotime('-7 day')){
echo 'more than 7 days';
}else{
echo 'less than 7 days';
}