1

我正在尝试一个简单的测试,其中只有$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';
}
4

4 回答 4

1

我已经测试过这段代码。它应该工作得很好。

$today = date("d-m-Y");

$checkpoint_date = '15-08-2013';
if (strtotime($checkpoint_date) - strtotime($today) > 7){
    echo "<script>alert('More than 7 days')</script>";
}else{
    echo "<script>alert('Less than 7 days')</script>";
}

第二个答案:

我尝试测试您的代码。它实际上工作正常。除了我使用 echo 来输出 javascript。

$checkpoint_date = '15-08-2013';

if (strtotime($checkpoint_date) < strtotime('-7 day')){ 
    echo "<script>alert('less than');</script>";
}else{
    echo "<script>alert('more than');</script>";
}
于 2013-08-15T03:20:02.337 回答
0

尚未测试,但应该这样做:

<?php

    //last time 
    $checkpoint_date = '15-08-2013';

    if ( strtotime($checkpoint_date) < strtotime('-7 day') ) {
        $script = '<script> alert("hi"); </script>';
    }
    else {
        $script = '';
    }

    echo $script;

?>
于 2013-08-15T03:09:48.453 回答
0
    // Get the contents of the pdf into a variable for later
    ob_start();
    require_once('pdf.php');
    $pdf_html = ob_get_contents();
    ob_end_clean();
            require_once($dir.'/dompdf/dompdf_config.inc.php');

    $dompdf = new DOMPDF(); // Create new instance of dompdf
    $dompdf->load_html($pdf_html); // Load the html
    $dompdf->render(); // Parse the html, convert to PDF
    $pdf_content = $dompdf->output(); // Put contents of pdf into variable for later
于 2013-09-07T08:28:37.583 回答
-1

只是一个猜测,但也许 strtotime 不适用于您尝试传递的格式(15-08-2013)。

于 2013-08-15T03:12:27.130 回答