Ejemplo n.º 1
0
function cron_run()
{
    $files = glob(CRON_DIR . DIRECTORY_SEPARATOR . '*.php');
    if (!$files) {
        return true;
    }
    $now = time();
    $semaphore = registry_get('cron_lock', false);
    if ($semaphore) {
        if ($now - $semaphore < 3600) {
            return false;
        }
    }
    registry_set('cron_last', $now);
    registry_set('cron_lock', $now);
    foreach ($files as $f) {
        include $f;
    }
    registry_delete('cron_lock');
    return true;
}
Ejemplo n.º 2
0
<?php

/**
 *
 * @copyright  2014 izend.org
 * @version    1
 * @link       http://www.izend.org
 */
require_once 'pdo.php';
$db_url = $scheme . '://test:test@localhost/test';
$db_prefix = 'test_';
$db_debug = true;
db_connect($db_url);
require_once 'registry.php';
$msecs = microtime(true);
$now = time();
$semaphore = registry_get('cron_lock', false);
if ($semaphore) {
    dump($now - $semaphore);
}
registry_set('cron_last', $now);
registry_set('cron_lock', $now);
registry_delete('cron_lock');
echo sprintf('%.4f', microtime(true) - $msecs), PHP_EOL;