engineering/app/Request.php
2023-11-09 14:09:52 +08:00

10 lines
148 B
PHP
Executable File

<?php
namespace app;
// 应用请求对象类
class Request extends \think\Request
{
// 全局过滤规则
protected $filter = ['trim'];
}