Why does call to now() or current_timestamp() fail in simple php script?
<?php
try {
    echo "Now: " . CURRENT_TIMESTAMP() . "<br>";
    //echo "Time: " . time() . "<br>";
    echo "Done";
}
catch(Exception $e) {
    echo 'Message: ' .$e->getMessage();
}
?>
The script returns a blank page, and no error is reported. time() worked fine.
 
     
     
    