Miracle
23-06-2007, 10:30
Khi dùng php để lấy nội dung một tập tin ảnh .jpg hoặc nhạc .mp3 để truyền đến user thì dùng hàm nào là nhanh nhất ?
$fp = fopen($filename,"rb");
while(!feof($fp))
{
echo fgets($fp);
}
include($filename);
readfile($filename);
$fp = fopen($filename,"rb");
while(!feof($fp))
{
echo fgets($fp);
}
include($filename);
readfile($filename);