示例#1
0
文件: ping.php 项目: hojgr/bigbrother
<?php

include "helper.php";
isRequestValid(function () {
    mutateData(function ($old) {
        $old->last_ping = time();
        return $old;
    });
    echo "Pong!";
});
示例#2
0
<?php

include "helper.php";
isRequestValid(function () {
    mutateData(function ($old) {
        if (!isset($old->infractions)) {
            $old->infractions = [];
        }
        $old->infractions[] = ['time' => time(), 'power' => $_GET['power']];
        return $old;
    });
    echo "Recorded!";
});