1

$checkpoint_date7 日未満の場合にのみ JavaScript を実行する必要がある簡単なテストを試みています。

<?php
$checkpoint_date = '15-08-2013';

if (strtotime($checkpoint_date) < strtotime('-7 day')){ 
?>

<script> alert('hi'); </script>

<?php } ?>

alert、条件が true と評価されるかどうかに関係なく実行されるように見えます。

私はそれをテストしたので、上記の条件が機能することを知っています:

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>";
}

2番目の答え:

私はあなたのコードをテストしようとします。それは実際にうまく動作します。ただし、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 に答える