當前位置: 首頁>>代碼示例>>PHP>>正文


PHP city::getKeys方法代碼示例

本文整理匯總了PHP中city::getKeys方法的典型用法代碼示例。如果您正苦於以下問題:PHP city::getKeys方法的具體用法?PHP city::getKeys怎麽用?PHP city::getKeys使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在city的用法示例。


在下文中一共展示了city::getKeys方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: server

}
//if ! can edit
if (!$server) {
    $server = new server($_REQUEST['server_id']);
}
echo '<h3>';
if ($this_city->getValue('name')) {
    echo htmlentities($this_city->getValue('name')) . ' ';
}
echo '(Location: ' . $this_city->getValue('id') . ')</h3>';
if (!$can_access) {
    echo '<p class="vcard">Owned by: <a href="/server/' . $this_city->getValue('server')->getID() . '/user/' . $this_city->getValue('user')->getValue('userid') . '" class="fn url nickname">' . $this_city->getValue('user')->getValue('nickname') . '</a></p>';
}
if ($can_access_time > 0) {
    echo '<b>Can access this page for ' . $can_access_time . ' more minutes.</b>';
}
if ($can_edit_time > 0) {
    echo '<b>Can edit this page for ' . $can_edit_time . ' more minutes.</b>';
}
if ($can_access) {
    foreach ($this_city->getKeys() as $key) {
        $key2 = explode('_', $key);
        if ($key == 'id' || $key == 'name' || $key == 'server' || $key == 'user' || is_numeric($key) || $key2[0] == 'user' || $key2[0] == 'unit' && is_numeric($key2[1])) {
            continue;
        }
        $label = ucwords(str_replace('_', ' ', $key));
        echo '<div>' . $label . ': ' . $this_city->getValue($key) . '</div>';
    }
    //end foreach key
}
//end if can_access
開發者ID:honchoman,項目名稱:singpolyma,代碼行數:31,代碼來源:city_stats.php


注:本文中的city::getKeys方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。