コード例 #1
0
 public static function createRandom()
 {
     $names = array('Uranus', 'Earth', 'Mars', 'Venus', 'Saturn', 'Pluto');
     shuffle($names);
     $oPlanet = new Planet();
     $oPlanet->setName($names[0]);
     $oPlanet->setType('Planet');
     $oPlanet->setUser(mt_rand(1, 10));
     $oPlanet->setAge(mt_rand(0, 5));
     $oPlanet->setWater(mt_rand(0, 1));
     $oPlanet->setOxygen(mt_rand(0, 1));
     $oPlanet->setGround(mt_rand(0, 1));
     $oPlanet->setItrium(mt_rand(0, 1));
     $oPlanet->setForest(mt_rand(0, 1));
     $oPlanet->setCivilisation(mt_rand(0, 1));
     $oPlanet->save();
 }
コード例 #2
0
ファイル: report.php プロジェクト: JJjie/RuCTF-2015
<?php

require_once 'inc/shortcuts.php';
require_once 'inc/db.php';
require_once 'inc/routing.php';
require_once 'models/Planet.php';
require_once 'models/SessionManager.php';
$result = null;
if (SessionManager::is_authenticated() && ($form = is_form_submitted(['declination', 'hour_angle', 'brightness', 'size', 'color', 'message']))) {
    try {
        $planet = new Planet(['declination' => (double) $form['declination'], 'hour_angle' => (double) $form['hour_angle'], 'brightness' => (double) $form['brightness'], 'size' => (double) $form['size'], 'color' => $form['color'], 'message' => $form['message'], 'added_by' => SessionManager::current_user()]);
        $planet->save();
        redirect('/?planet_added=1');
    } catch (DbException $e) {
        $result = $e->getMessage();
    }
}
$index = new Controller('index', ['result' => $result]);
$index->run();