How to change content type in 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); ?>&h=195&w=540&zc=1&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中的内容类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何更改php中的内容类型?


基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01