readfile_chunked() 공개 정적인 메소드

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
리턴 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);
}