1

我在 PHP 中有一个警报脚本,它用某种紧急文本向应用程序发出警报。现在我需要以某种方式添加一些代码,允许管理员将警报设置为定时警报。目前他们可以设置警报,然后发送另一个请求来删除警报。

下面的代码已被更改以反映我当前使用的内容,我大部分都在工作,除了时间到期后的删除,也就是 goto a; 常规。

$filename = "alertCheck.php";
 $timedalertsingle = $_POST['timedalertsingle'];
 $timedalerthours = $_POST['timedalertchoice'];
 $timestamp = time(); 
 $timedalertseconds = $timedalerthours * 3600;

 // Testing the variables
 echo $timedalertsingle."<br />";
 echo $timedalerthours."<br />";
 echo $timestamp."<br />";
 echo $timedalertseconds."<br />";
 echo ($timestamp + $timedalertseconds)."<br />";

// write the file
$fp = fopen ($filename, "w"); 
if ($fp) {
    fwrite ($fp, $timedalertsingle);
    fclose ($fp);
    echo ("<span style='color: #6FF;'>File written:</span> " . " This alert will last for " .$timedalerthours . " Hour(s)" . "<br />");
    echo date('m-d-y') ."<br />";
}
else {
    echo ("File was not written");
}

// test the time
a:
if (time() > ($timestamp + $timedalertseconds)){ 

    // overwrite the file 
    fwrite ($fp);
    fclose ($fp);
    echo ("<span style='color: #6FF;'>There are no alerts.</span> ");
}
else {
    goto a;
}

我的输入(更改以反映新的变量名称:

<form action="processtime.php" method="post" name="timedalert">
<strong>Post a Timed Alert: &nbsp;&nbsp;</strong><input name="timedalertsingle" size="60" type="text" /><br />
<strong>How many hours this alert will be displayed: </strong>
<select name="timedalertchoice" />
  <option value=".0833">5 Minutes</option>
  <option selected="selected" value="1">1 hour</option>
  <option value="2">2 hours</option>
  <option value="4">4 hours</option>
  <option value="6">6 hours</option>
  <option value="8">8 hours</option>
  <option value="12">12 hours</option>
  <option value="18">18 hours</option>
  <option value="24">24 hours</option>
</select>
 &nbsp;&nbsp;&nbsp;&nbsp;<input name="submit" type="submit" value="submit" /><br />
</form>

所以这是我的 processtime.php 页面运行后的样子:

树木倒下 93 号楼的一半在 Cuppertino
24
1354217471
86400
1354303871
文件写入:此警报将持续 24 小时
11-29-12

问题是它不会在给定时间后停止警报。帮助!TIA

4

3 回答 3

0

保存警报后,设置“过期”字段(停止显示的日期/时间)。当页面加载如果过期 > 现在,显示警报。

您不能将 PHP 代码放入 Javascript 中。PHP 在服务器上执行,客户端 Javascript 只看到 PHP 代码的 RESULT。您不能让 JS 代码执行 PHP 代码,除非向服务器发送一个新的 http 请求(页面重新加载或 ajax 请求)。

于 2012-11-27T18:31:35.643 回答
0
class RadamsAlert {
const ALERT_FILE = 'alerts.dat';

function addAlert($alertMessage, $expirationTime){
    $alert = array('alert' => $alertMessage, 'expiration' => $expirationTime);
    $alerts = $this->readAlerts();
    $alerts[] = $alert;
    $this->writeAlerts($alerts);
}

function readAlerts(){
    $alerts = array();
    if(file_exists(self::ALERT_FILE)){
        $contents = file_get_contents(self::ALERT_FILE);
        $readAlerts = unserialize($contents);
        if(count($readAlerts) > 0){
            foreach($readAlerts as $alert){
                if($alert['expiration'] > time()){
                    $alerts[] = $alert;
                }
            }
        }
    }
    return $alerts;
}

function writeAlerts(array $alerts){
    file_put_contents(self::ALERT_FILE, serialize($alerts));
}

}

$timedalertsingle = isset($_POST['timedalertsingle']) ? $_POST['timedalertsingle'] : false;
$timedalertseconds = isset($_POST['timedalertchoice']) ?    (int)$_POST['timedalertchoice'] : 0;
$timestamp = time();

if($timedalertsingle !== false && $timedalertseconds > 0){
$radAlert = new RadamsAlert();
$radAlert->addAlert($timedalertsingle, $timedalertseconds + $timestamp);
}

header('Location: sec.html');
exit();
于 2012-12-10T16:12:30.780 回答
0

如果您希望在特定时间段后运行“警报”,请说现在 2 小时。我想您必须从用户那里获取一个输入字段作为日期/时间,要求他指定警报的开始时间

然后每 2-5 分钟运行一次 Cron 脚本并执行所需的操作

于 2012-11-27T18:28:03.510 回答