### 聯絡我們寄件處理方式 ```php= // 聯絡我們寫入資料庫處理 // ... if (function_exists('fastcgi_finish_request')) { // PHP-FPM 適用 ob_clean(); set_time_limit(0); ignore_user_abort(true); // 輸出結果 echo(json_encode($rtn)); fastcgi_finish_request(); } else { // mod_php 適用 ob_clean(); set_time_limit(0); ignore_user_abort(true); ob_end_flush(); ob_start(); // 輸出結果 echo(json_encode($rtn)); header("Content-Type: text/html;charset=utf-8"); header("Connection: close"); header('Content-Length: '. ob_get_length()); ob_flush(); flush(); } // 寄件處理 // ... ``` [DEMO網址](https://taimat2021.iware.com.tw/contactdemo.html)
{"metaMigratedAt":"2023-06-16T09:33:41.997Z","metaMigratedFrom":"Content","title":"Untitled","breaks":true,"contributors":"[{\"id\":\"1747eada-5ccd-4dac-84a1-ca2d89ecd782\",\"add\":692,\"del\":7}]"}
    170 views