比如这样的情况:
<img src="/static/imghwm/default1.png" data-src="../server/getfile.php?id=1339118000" class="lazy" alt="请问php如何实现让图片直接显示?" >
getfile.php根据id找到数据库中对应的图片路径, 然后将图片数据发送给浏览器
求解答(这个问题真的很简单吧?可是我搞不清楚啊,有简单的几句代码就好)
回复讨论(解决方案)
好吧,找了段代码,如下:
$filename='../img/3c_44141_f_en.jpg'; $size = getimagesize($filename); $fp = fopen($filename, "rb"); if ($size && $fp) { header("Content-type: {$size['mime']}"); fpassthru($fp); exit; } else { // error }
测试可用,还有什么要注意的地方啊?我看貌似有个etag属性,也就是如果不停刷新,如何让php不重新读取图像啊?
谁来我给分了
http://blog.csdn.net/bwz290845851/article/details/7026412
我来,坐观楼主的代码,学习
用程序输出静态资源效率有问题。远不如web服务器的效率,而且消耗资源很大。
如果你的访问量不高,不在乎这个消耗也无所谓。
你这个用况如果是为了隐藏资源文件的话,php回复一个301或者302重定向就好了。
如果要做验证就只好这样了。
用程序输出静态资源效率有问题。远不如web服务器的效率,而且消耗资源很大。
如果你的访问量不高,不在乎这个消耗也无所谓。
你这个用况如果是为了隐藏资源文件的话,php回复一个301或者302重定向就好了。
如果要做验证就只好这样了。
大哥,就是这个意思啊……
为了统一,所有的资源文件全部使用隐藏方式获取,现在就想着把img搞定这样在浏览的时候也用同样的接口进去
但是301(永久移动)这个应该怎么写啊?我都找不到例子
虽然没分了但是请继续帮忙吧~
哦,试出来了,后面加location,谢谢。
转载自冠威博客 [ http://www.guanwei.org/ ]
本文链接地址:http://www.guanwei.org/post/PHPnotes/04/php-redirect-methods.html
PHP页面跳转一、header()函数
header()函数是PHP中进行页面跳转的一种十分简单的方法。header()函数的主要功能是将HTTP协议标头(header)输出到浏览器。
header()函数的定义如下:
void header (string string [,bool replace [,int http_response_code]])
可选参数replace指明是替换前一条类似标头还是添加一条相同类型的标头,默认为替换。
第二个可选参数http_response_code强制将HTTP相应代码设为指定值。 header函数中Location类型的标头是一种特殊的header调用,常用来实现页面跳转。注意:1.location和“:”号间不能有空格,否则不会跳转。
2.在用header前不能有任何的输出。
3.header后的PHP代码还会被执行。例如,将浏览器重定向到冠威博客
//重定向浏览器
header("Location: http://www.guanwei.org");
//确保重定向后,后续代码不会被执行
exit;
?>
看不少网站都是这么做的,隐藏图片资源。
不过请教一下为什么要这样隐藏呢?
图片另存为一样能保存。
这么隐藏一下有什么好处呢?

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version
Visual web development tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Notepad++7.3.1
Easy-to-use and free code editor
