只有满足php条件才运行javascript

时间:2013-08-15 03:03:21

标签: php javascript

我正在尝试一个简单的测试,只有当$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 个答案:

答案 0 :(得分: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>";
}

答案 1 :(得分: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;

?>

答案 2 :(得分: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

答案 3 :(得分:-1)

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