game2006api/webapp/mt/Rank.php
aozhiwei ebcef6e4da 1
2021-12-02 16:09:24 +08:00

25 lines
378 B
PHP

<?php
namespace mt;
use phpcommon;
class Rank {
public static function get($id)
{
return getXVal(self::getMetaList(), $id);
}
protected static function getMetaList()
{
if (!self::$metaList) {
self::$metaList = getMetaTable('rank@rank.php');
}
return self::$metaList;
}
protected static $metaList;
}