header几种常见的使用方式

<?php
declare(strict_types=1);
ini_set('display_errors', 'On');
error_reporting(-1);

// 设置内容类型
header('Content-type: text/html; charset=utf-8');
header('Content-type: application/json; charset=utf-8');

// 设置HTTP状态码
header('HTTP/1.1 404 Not Found');

// 跳转到指定页面
header('Location: https://www.example.com/');
exit; // 跳转后必须中止程序

Copyright © 2024 码农人生. All Rights Reserved