本文整理匯總了PHP中Web::sendFile方法的典型用法代碼示例。如果您正苦於以下問題:PHP Web::sendFile方法的具體用法?PHP Web::sendFile怎麽用?PHP Web::sendFile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Web
的用法示例。
在下文中一共展示了Web::sendFile方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: atfile_GET
function atfile_GET(Web &$w)
{
$p = $w->pathMatch("id");
$id = str_replace(".jpg", "", $p['id']);
$attachment = $w->service("File")->getAttachment($id);
$w->sendFile(FILE_ROOT . $attachment->fullpath);
}
示例2: media_GET
/**
* Send media files from within
* a modules help/media folder
*
* @param unknown_type $w
*/
function media_GET(Web &$w)
{
$p = $w->pathMatch("m", "f");
$m = $p['m'];
$f = $p['f'];
$filename = str_replace("..", "", ROOT . "/" . $w->getModuleDir($m) . '/help/media/' . $f);
$w->sendFile($filename);
}
示例3: path_GET
function path_GET(Web &$w)
{
// make sure we secure from /../../etc/passwd attacks!!
$filename = str_replace("..", "", FILE_ROOT . $w->getPath());
$w->sendFile($filename);
}