engineering/app/Request.php
shengchanzhe 5d7af114f8 init
2023-11-08 20:45:32 +08:00

10 lines
148 B
PHP

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