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


PHP Chat::getRoomByName方法代码示例

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


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

示例1: error_log

<?php

error_log('api_put');
$room_name = $this->tokens[2];
$name = $_POST['name'];
$room = Chat::getRoomByName($room_name);
if (!$room) {
    $this->error = 'Invalid room name';
    return;
}
Chat::putFiles($room['room_id'], $name, $_FILES);
开发者ID:richtaur,项目名称:chat,代码行数:11,代码来源:api_put.php

示例2: array_shift

<?php

$this->room_name = $this->tokens[1];
$history = $this->tokens[2] == 'history';
$dates = $this->tokens;
array_shift($dates);
array_shift($dates);
array_shift($dates);
$date = implode('/', $dates);
if (!$this->room_name) {
    return 'error';
}
$this->room = Chat::getRoomByName($this->room_name);
if ($this->room) {
    if ($history) {
        $this->page_title = $this->room['name'] . ' history';
        if ($date) {
            $this->messages = Chat::getMessagesByRoomIdAndDate($this->room['room_id'], $date);
        } else {
            $this->dates = Chat::getDatesByRoomId($this->room['room_id']);
        }
        return 'history';
    }
} else {
    $this->room = Chat::putRoom($this->room_name);
    if (is_string($this->room)) {
        $this->error_message = $this->room;
        return 'error';
    }
    $this->message = 'Room created! The code is <strong>' . $this->room['code'] . '</strong>. Keep it secret, keep it safe. Type <code>/help</code> for more info.';
}
开发者ID:richtaur,项目名称:chat,代码行数:31,代码来源:room.php


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