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.
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() |
Code of debug_fclose() debug fclose WP 5.7
function debug_fclose( $fp ) {
_deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' );
}