如何更改php中的内容类型?

How to change content type in php?(如何更改php中的内容类型?)
本文介绍了如何更改php中的内容类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一张图片,但它没有显示.我检查了图像属性(右键单击并选择属性),我发现类型"是 text/html 而不是 JPEG 图像.这是因为导致我的图像不显示的类型吗?如何更改类型"值?我正在使用 php...

I have an image, but it keep doesn't display. I check the image properties (right-click and chose properties), and the I found the "type" is text/html not JPEG image. Is this because the type that cause my images dont show up?? How to change the "Type" value? I am using php...

我在一个简单的 html [img] 标签中显示图像...

I display the image in a simple html [img] tag...

是的,我试过了..如果我包括

Yeah, i tried.. If i include the

<?php header('Content-Type:image/jpeg'); ?>

显示网址​​,很奇怪吧??

It display the URL, very weird huh??

我用的是apache,图片是php代码生成的……

I am using apache, the image is generated by php code...

<img src="<?php echo bloginfo('template_url'); ?>/thumb.php?src=<?php echo get_post_meta($post->ID, "image", $single = true); ?>&amp;h=195&amp;w=540&amp;zc=1&amp;q=95" alt="<?php the_title(); ?>

推荐答案

header('Content-Type: image/jpeg');

确保在进行任何输出之前调用 header() 函数,否则您将收到标头已发送"错误.

Make sure to call the header() function before doing any output or you will get a "Headers already sent" error.

这篇关于如何更改php中的内容类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)