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


PHP settings::room_info方法代码示例

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


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

示例1:

    }
}
// Prevent errors
if (!isset($_GET['act'])) {
    $_GET['act'] = "";
}
// We cannot allow a user to start the frameset without choosing a room
if ($_GET['act'] == "frame" && $x7c->room_name == "") {
    $_GET['errore'] = "noroom";
}
// Test to see if server is running in single room mode
if ($x7c->settings['single_room_mode'] != "") {
    // Set the room name
    $_GET['room'] = $x7c->settings['single_room_mode'];
    // Fix problems with room passwords
    $x7c->room_info($_GET['room']);
    // Set action to frameset
    if ($_GET['act'] == "") {
        $_GET['act'] = "frame";
    }
}
// See if the room is password protected
if (isset($_GET['room'])) {
    include_once "./sources/room_password.php";
    $cookie_name = "rpw_" . $x7c->room_data['id'];
    // See if a cookie password is set
    if (!isset($_COOKIE[$cookie_name])) {
        $_COOKIE[$cookie_name] = "";
    }
    // See if the password form was filled out
    if (isset($_POST['room_pw'])) {
开发者ID:EZDM,项目名称:omeyocan,代码行数:31,代码来源:index.php


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