official_website/server/app/Request.php

10 lines
148 B
PHP
Raw Normal View History

2024-11-29 14:05:52 +08:00
<?php
namespace app;
// 应用请求对象类
class Request extends \think\Request
{
// 全局过滤规则
protected $filter = ['trim'];
}