Warning: This function has been deprecated. Use error_log() instead.
debug_fwrite( mixed $fp, string $string )
Write contents to the file used for debugging.
Description Description
See also See also
Parameters Parameters
- $fp
-
(mixed) (Required) Unused.
- $string
-
(string) (Required) Message to log.
Source Source
File: wp-includes/deprecated.php
function debug_fwrite( $fp, $string ) { _deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' ); if ( ! empty( $GLOBALS['debug'] ) ) error_log( $string ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.4.0 | Use error_log() |
0.71 | Introduced. |