data_center/app/Request.php

10 lines
148 B
PHP
Raw Normal View History

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