15 lines
259 B
PHP
15 lines
259 B
PHP
<?php
|
|
|
|
namespace plugin\notification\expose\helper;
|
|
|
|
use think\facade\Db;
|
|
|
|
class Online
|
|
{
|
|
public static function clear()
|
|
{
|
|
// 截断表
|
|
Db::execute('TRUNCATE TABLE ' . getenv('DATABASE_PREFIX') . 'plugin_notification_online');
|
|
}
|
|
}
|