debug_fclose

函式
debug_fclose ( $fp )
引數
  • (mixed) $fp Unused.
    Required:
相關
  • error_log()
定義位置
相關方法
debug_fopendebug_fwritedo_enclosewp_debug_modeget_enclosed
引入
0.71
棄用
3.4.0

debug_fclose: 這個函式關閉一個開啟的檔案指標。它經常被用於除錯程式碼,以確保所有的檔案控制代碼被正確關閉。

關閉除錯檔案控制代碼。

function debug_fclose( $fp ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' );
}

常見問題

FAQs
檢視更多 >