Files

15 lines
259 B
PHP
Raw Permalink Normal View History

<?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');
}
}