千家信息网

php中header怎么设置常见的content-type值

发表于:2025-01-21 作者:千家信息网编辑
千家信息网最后更新 2025年01月21日,这篇文章主要介绍"php中header怎么设置常见的content-type值",在日常操作中,相信很多人在php中header怎么设置常见的content-type值问题上存在疑惑,小编查阅了各式资
千家信息网最后更新 2025年01月21日php中header怎么设置常见的content-type值

这篇文章主要介绍"php中header怎么设置常见的content-type值",在日常操作中,相信很多人在php中header怎么设置常见的content-type值问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"php中header怎么设置常见的content-type值"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

在PHP中可以通过header函数来发送头信息,还可以设置文件的content-type,下面整理了一些常见文件类型对于的content-type值。

//date 2015-06-22//定义编码header( 'Content-Type:text/html;charset=utf-8 '); //Atomheader('Content-type: application/atom+xml'); //CSSheader('Content-type: text/css'); //Javascriptheader('Content-type: text/javascript'); //JPEG Imageheader('Content-type: image/jpeg'); //JSONheader('Content-type: application/json'); //PDFheader('Content-type: application/pdf'); //RSSheader('Content-Type: application/rss+xml; charset=ISO-8859-1'); //Text (Plain)header('Content-type: text/plain'); //XMLheader('Content-type: text/xml'); // okheader('HTTP/1.1 200 OK'); //设置一个404头:header('HTTP/1.1 404 Not Found'); //设置地址被永久的重定向header('HTTP/1.1 301 Moved Permanently'); //转到一个新地址header('Location: http://www.example.org/'); //文件延迟转向:header('Refresh: 10; url=http://www.example.org/');print 'You will be redirected in 10 seconds'; //当然,也可以使用html语法实现// 

到此,关于"php中header怎么设置常见的content-type值"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

0