woocommerce_readfile_chunked()
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() woocommerce readfile chunked code WC 9.6.1
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 ); }