第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

將包含的輸出發(fā)送到變量中?

將包含的輸出發(fā)送到變量中?

PHP
ABOUTYOU 2023-08-11 17:27:17
我在這里可能沒有使用正確的方法,但我有一個 ErrorHandler 類,它會在出現(xiàn)錯誤時輸出錯誤頁面,如下所示:private function loadErrorPage() {  if( file_exists( $this->errorPagePath ) ) {    // load the error page: since it's an include, it'll have access all of this classe's properties!    // i.e. $this->errstr, $this->errid, etc.    include ( $this->errorPagePath );   }  // no error page! print generic message!  else {    echo 'Got a problem! Contact the admin!';  }  exit(); }我遇到的問題是有時我的頁面是通過 AJAX 調(diào)用來調(diào)用的!如果我的 POST 中有錯誤被錯誤處理程序捕獲,我需要能夠 exit(),在 JSON 響應(yīng)中返回完整生成的頁面,或者只是指向它的鏈接,在 JS 中,重定向到實際的$this->errorPagePath頁面回復(fù)中給出。但是,后面的解決方案不太有效,因為它需要所有必需的錯誤處理程序?qū)傩?,例?errid、錯誤字符串等。不知道如何繼續(xù)這里。有沒有辦法可以將 include() 的結(jié)果輸出到變量中并執(zhí)行以下操作:$generatedErrorPage = include ( $this->errorPagePath );if ( $this->sendErrorPageInJSON ) {  exit(json_encode([ 'errorHtml' => $generatedErrorPage ]));}else{  echo $generatedErrorPage;  exit();}
查看完整描述

1 回答

?
紅糖糍粑

TA貢獻1815條經(jīng)驗 獲得超6個贊

您必須啟動輸出緩沖,包括文件并結(jié)束緩沖以使用其內(nèi)容初始化變量


// Start output buffering

ob_start();


// Include the file

include ( $this->errorPagePath );


// End buffering and return its contents

$generatedErrorPage = ob_get_clean();


查看完整回答
反對 回復(fù) 2023-08-11
  • 1 回答
  • 0 關(guān)注
  • 146 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號