debug_fclose()WP 0.71

Deprecated from version 3.4.0. It is no longer supported and can be removed in future releases. Use error_log() instead.

Close the debugging file handle.

No Hooks.

Return

null. Nothing (null).

Usage

debug_fclose( $fp );
$fp(mixed) (required)
Unused.

Notes

  • See: error_log()

Changelog

Since 0.71 Introduced.
Deprecated since 3.4.0 Use error_log()

debug_fclose() code WP 6.7.1

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