Exemplo n.º 1
0
 * Copyright 2008, 2009 Adam Goforth
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>. 
 */
if (!isset($_REQUEST["pos"])) {
    die;
}
include "utils.php";
$panelsDir = "panels/";
$posList = split("-", $_REQUEST["pos"]);
$imgDescList = array();
foreach ($posList as $pos) {
    $posdir = posAbbrToFull($pos);
    if ($posdir != "") {
        $imgFileName = getRandomImageForPos($panelsDir, $pos);
        $imgDesc = array("pos" => $pos, "file" => $imgFileName);
        $imgDescList[] = $imgDesc;
    }
}
print json_encode($imgDescList);
Exemplo n.º 2
0
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>. 
 */
include "utils.php";
$numRuns = 1100;
$starttime = microtime_float();
for ($i = 0; $i < $numRuns; $i++) {
    $image = getRandomImageForPos("panels/", "tl");
}
$endtime = microtime_float();
print $numRuns . " x getRandomImageForPos took " . ($endtime - $starttime) . " sec.\n";
storeTLImagePathsToDisk();
$starttime = microtime_float();
for ($i = 0; $i < $numRuns; $i++) {
    $image = getRandomImageFromStore();
}
$endtime = microtime_float();
print $numRuns . " x getRandomImageFromStore took " . ($endtime - $starttime) . " sec.\n";
function storeTLImagePathsToDisk()
{
    $allfiles = removeDots(scandir("panels/topleft/"));
    $serializedPaths = serialize($allfiles);
    $fp = fopen("serializedTLPaths.txt", "w");