如何更改php中的内容类型? [英] How to change content type in php?

查看:34
本文介绍了如何更改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中的内容类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆