debug_fclose()
Deprecated since 3.4.0. It is no longer supported and may be removed in future releases. Use
error_log() instead.Close the debugging file handle.
No Hooks.
Returns
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() debug fclose code WP 7.0
function debug_fclose( $fp ) {
_deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' );
}