php后台接收blob文件流,如何从php中的BLOB播放流音频?

我有这个smartReadFile()php函数,它允许从文件播放音频流。你将如何修改此函数,以便查询mysql数据库BLOB而不是读取特定文件?

function smartReadFile($location, $filename, $mimeType = 'audio/octet-stream')

{

if (!file_exists($location))

{

header ("HTTP/1.1 404 Not Found");

return;

}

$size = filesize($location);

$time = date('r', filemtime($location));

$fm = @fopen($location, 'rb');

if (!$fm)

{

header ("HTTP/1.1 505 Internal server error");

return;

}

$begin = 0;

$end = $size - 1;

if (isset($_SERVER['HTTP_RANGE']))

{

if (preg_match('/bytes=\h*(\d+)-(\d*)[\D.*]?/i', $_SERVER['HTTP_RANGE'], $matches))

{

$begin = intval($matches[1]);

if (!empty($matches[2]))

{

$end = intval($matches[2]);

}

}

}

if (isset($_SERVER['HTTP_RANGE']))

{

header('HTTP/1.1 206 Partial Content');

}

else

{

header('HTTP/1.1 200 OK');

}

header("Content-Type: $mimeType");

header('Cache-Control: public, must-revalidate, max-age=0');

header('Pragma: no-cache');

header('Accept-Ranges: bytes');

header('Content-Length:' . (($end - $begin) + 1));

if (isset($_SERVER['HTTP_RANGE']))

{

header("Content-Range: bytes $begin-$end/$size");

}

header("Content-Disposition: inline; filename=$filename");

header("Content-Transfer-Encoding: binary");

header("Last-Modified: $time");

$cur = $begin;

fseek($fm, $begin, 0);

while(!feof($fm) && $cur <= $end && (connection_status() == 0))

{

print fread($fm, min(1024 * 16, ($end - $cur) + 1));

$cur += 1024 * 16;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值