本文整理汇总了PHP中JS::Close方法的典型用法代码示例。如果您正苦于以下问题:PHP JS::Close方法的具体用法?PHP JS::Close怎么用?PHP JS::Close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JS
的用法示例。
在下文中一共展示了JS::Close方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Attachments
$attachment = new Attachments();
if (empty($_GET['aid'])) {
flash();
}
$attach_id = authcode(rawurldecode($_GET['aid']), "DECODE");
if (empty($attach_id)) {
flash();
}
require LIB_PATH . "func.download.php";
require LIB_PATH . "js.class.php";
$filename = rawurlencode($attachment->getAttachFileName($attach_id));
$filename = $attachment->file_url;
if (!sendFile($filename)) {
exit('Error occured when get files.');
} else {
JS::Close();
}
break;
default:
break;
}
}
if (empty($_GET['id'])) {
$picture_src = URL . "images/watermark.png";
}
if (isset($_GET['source'])) {
$file_source = trim(rawurldecode($_GET['source']));
$picture_src = URL . $attachment_url . $file_source;
}
setvar("img_src", $picture_src);
render("attachment");