Warning: This function has been deprecated. Use error_log() instead.

debug_fclose() WordPress Function

The debug_fclose() WordPress function is used to close a debugging output stream. This function is useful for debugging purposes.

debug_fclose( mixed $fp ) #

Close the debugging file handle.


Description

Top ↑

See also


Top ↑

Parameters

$fp

(mixed)(Required)Unused.


Top ↑

Source

File: wp-includes/deprecated.php

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


Top ↑

Changelog

Changelog
VersionDescription
3.4.0Use error_log()
0.71Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More