当前位置: 首页>>代码示例>>PHP>>正文


PHP WebPage::SetContentDisposition方法代码示例

本文整理汇总了PHP中WebPage::SetContentDisposition方法的典型用法代码示例。如果您正苦于以下问题:PHP WebPage::SetContentDisposition方法的具体用法?PHP WebPage::SetContentDisposition怎么用?PHP WebPage::SetContentDisposition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WebPage的用法示例。


在下文中一共展示了WebPage::SetContentDisposition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: DownloadDocument

/**
 * Downloads a document to the browser, either as 'inline' or 'attachment'
 *  
 * @param WebPage $oPage The web page for the output
 * @param string $sClass Class name of the object
 * @param mixed $id Identifier of the object
 * @param string $sAttCode Name of the attribute containing the document to download
 * @param string $sContentDisposition Either 'inline' or 'attachment'
 * @return none
 */
function DownloadDocument(WebPage $oPage, $sClass, $id, $sAttCode, $sContentDisposition = 'attachment')
{
    try {
        $oObj = MetaModel::GetObject($sClass, $id, false, false);
        if (!is_object($oObj)) {
            throw new Exception("Invalid id ({$id}) for class '{$sClass}' - the object does not exist or you are not allowed to view it");
        }
        $oDocument = $oObj->Get($sAttCode);
        if (is_object($oDocument)) {
            $oPage->TrashUnexpectedOutput();
            $oPage->SetContentType($oDocument->GetMimeType());
            $oPage->SetContentDisposition($sContentDisposition, $oDocument->GetFileName());
            $oPage->add($oDocument->GetData());
        }
    } catch (Exception $e) {
        $oPage->p($e->getMessage());
    }
}
开发者ID:kira8565,项目名称:ITOP203-ZHCN,代码行数:28,代码来源:ajax.render.php

示例2: AsyncAction

 public function AsyncAction(WebPage $oPage, $sCode, $aParameters)
 {
     $oParameters = new PHPParameters();
     // For security reasons: add the extension now so that this action can be used to read *only* .zip files from the disk...
     $sBackupFile = $aParameters['backup'] . '.zip';
     if (file_exists($sBackupFile)) {
         // Make sure there is NO output at all before our content, otherwise the document will be corrupted
         $sPreviousContent = ob_get_clean();
         $oPage->SetContentType('application/zip');
         $oPage->SetContentDisposition('attachment', basename($sBackupFile));
         $oPage->add(file_get_contents($sBackupFile));
     }
 }
开发者ID:kira8565,项目名称:ITOP203-ZHCN,代码行数:13,代码来源:wizardsteps.class.inc.php


注:本文中的WebPage::SetContentDisposition方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。