woocommerce_readfile_chunked()WC 1.0

Deprecated from version 2.1. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

No Hooks.

Return

null. Nothing (null).

Usage

woocommerce_readfile_chunked( $file, $retbytes );
$file (required)
-
$retbytes **
-
Default: true

Changelog

Deprecated since 2.1

woocommerce_readfile_chunked() code WC 8.7.0

function woocommerce_readfile_chunked( $file, $retbytes = true ) {
	wc_deprecated_function( 'woocommerce_readfile_chunked', '2.1', 'WC_Download_Handler::readfile_chunked()' );
	return WC_Download_Handler::readfile_chunked( $file );
}