函数原型
debug_fclose( mixed $fp )
函数描述
Close the debugging file handle.
是否弃用
Warning: This function has been deprecated. Use error_log() instead.
函数参数
-
$fp
mixed
Required - Unused.
函数返回值
无
函数位置
File: wp-includes/deprecated.php.
函数源码
function debug_fclose( $fp ) {
_deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.4.0 | Use error_log() |
| 0.71 | Introduced. |

