#### 跨域头 --- 在公司写项目时,前端调我的接口报错跨域问题,加上以下代码即可 ```php // 代表允许任何网址请求 header('Access-Control-Allow-Origin:*'); // 允许请求的类型 header('Access-Control-Allow-Methods:POST,GET,OPTIONS,DELETE'); // 设置是否允许发送 cookies header('Access-Control-Allow-Credentials: true'); // 设置允许自定义请求头的字段 header('Access-Control-Allow-Headers: Content-Type,Content-Length,Accept-Encoding,X-Requested-with,Origin,Token'); ```