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

debug_fopen( string $filename, string $mode )

Open the file handle for debugging.


Description Description

See also See also


Top ↑

Parameters Parameters

$filename

(string) (Required) File name.

$mode

(string) (Required) Type of access you required to the stream.


Top ↑

Return Return

(false) Always false.


Top ↑

Source Source

File: wp-includes/deprecated.php

function debug_fopen( $filename, $mode ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' );
	return false;
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.0 Use error_log()
0.71 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.