本文整理汇总了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);
示例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.';
}