readfile_chunked() public static method

Reads file in chunks so big downloads are possible without changing PHP.INI - http://codeigniter.com/wiki/Download_helper_for_large_files/.
public static readfile_chunked ( string $file ) : boolean
$file string
return boolean Success or fail
/**
 * @deprecated
 */
function woocommerce_readfile_chunked($file, $retbytes = true)
{
    _deprecated_function('woocommerce_readfile_chunked', '2.1', 'WC_Download_Handler::readfile_chunked()');
    return WC_Download_Handler::readfile_chunked($file);
}