Exemple #1
0
 private static function getRoutesFromQuery($conn, $stmt)
 {
     $routes = array();
     $stmt->execute();
     while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
         $wr = new Walkroute($conn);
         $wr->loadFromRow($row);
         $routes[] = $wr;
     }
     return $routes;
 }