예제 #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!";
});