English 中文(简体)
im子
原标题:Getting header from img tag

Is there any way to retrieve headers from <img> tag using PHP? The <img> has src attribute set to a randomly and dynamic generated PHP image, which sends header that I want to retrieve containing dynamic content based on content of the image.

问题回答

吉大港山区的头盔由网络服务器确定,他们为图像服务。 你们可以通过直接从PHP中获取内容来压倒头脑。 然而,这比直接为图像服务的网络服务器要慢得多。 大多数网络服务器允许组合确定吉大港山区的主机,以便进行特定档案延期。

UPDATE: Add code to respond to comment.

传真

<a href="/images/my-image.php?type=png" />

In my-image.php:

<?php
   if( $_REQUEST[ type ] ==  png  ){
        header(  Content-Type: image/png  );
        echo file_get_contents(  /websites/mywebsite.com/web/images/my-image.jpg  );
            exit();
   }

More checks and code is available here:
http://www.php.net/manual/en/function.header.php#102175





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签