当前位置: 首页>>代码示例>>PHP>>正文


PHP DataAccess::get_highscores方法代码示例

本文整理汇总了PHP中DataAccess::get_highscores方法的典型用法代码示例。如果您正苦于以下问题:PHP DataAccess::get_highscores方法的具体用法?PHP DataAccess::get_highscores怎么用?PHP DataAccess::get_highscores使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DataAccess的用法示例。


在下文中一共展示了DataAccess::get_highscores方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: currentView

<div class="page-container" data-bind="if: currentView() === 'high-scores'">
<div class="well">
    <h2>High Scores</h2>
    <table class="table table-border">
        <thead>
        <tr>
            <th></th>
            <th>Level</th>
            <th>Score</th>
            <th>Date</th>
        </tr>
        </thead>
        <tbody>
        <?php 
$data_access = new DataAccess();
$highscores_array = $data_access->get_highscores();
foreach ($highscores_array as $row) {
    $date = date_create($row['end']);
    $dateScore = date_format($date, 'l, F jS, Y \\a\\t g:ia');
    echo '<tr>';
    echo '<td><img src="pics/Robot_Character1_Blue.png" height="60"/></td>';
    echo '<td>' . $row['level_id'] . '</td>';
    echo '<td>' . $row['highscore'] . '</td>';
    echo '<td>' . $dateScore . '</td>';
    echo '</tr>';
}
?>
        </tbody>
    </table>
</div>
</div>
开发者ID:medkg15,项目名称:how-to-train-your-robot,代码行数:31,代码来源:high-scores.php

示例2: json_encode

<?php

if ($_SERVER["REQUEST_METHOD"] !== 'GET') {
    http_response_code(405);
    exit;
}
require_once 'includes/data_access.php';
$data_access = new DataAccess();
$scores = $data_access->get_highscores();
header('Content-Type: application/json');
echo json_encode($scores);
开发者ID:medkg15,项目名称:how-to-train-your-robot,代码行数:11,代码来源:high-scores.php


注:本文中的DataAccess::get_highscores方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。