game/core1/app/core/chat.php

30 lines
641 B
PHP
Raw Normal View History

2022-06-06 21:30:34 +00:00
<?php
namespace Core;
class Chat {
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
public static function send_system( $uid , $text ) {
if( !is_string($uid) ) {
$uid = \Core\Database::query( 'SELECT `login` FROM `users` WHERE `uid` = :uid ORDER BY `id` ASC LIMIT 1000' , array(
'uid' => $uid
));
$uid = $uid['login'];
}
\Core\Database::query( 'INSERT INTO `chat` (`to`,`time`,`type`,`text`,`color`,`typeTime`,`new`) VALUES (
:to , :time , :type , :text , :color , :typeTime , :new
)', array(
'to' => $uid,
'time' => OK,
'type' => 6,
'text' => $text,
'color' => 'Black',
'typeTime' => 0,
'new' => 1
) );
}
}
?>