www.lightcourse.com/app/Request.php

9 lines
130 B
PHP
Raw Normal View History

2022-10-24 02:38:36 +00:00
<?php
namespace app;
// 应用请求对象类
class Request extends \think\Request
{
protected $filter = ['htmlspecialchars'];
}