Description
Force the download of a file
Usage
oikth_force_download( $file );Parameters
- $file
- ( mixed ) required –
Returns
voidSource
File name: oik-themes/feed/oik-themes-feed.phpLines:
1 to 11 of 11
function oikth_force_download( $file ) { bw_trace2(); $file_content = file_get_contents( $file ); $filename = basename( $file ); header( 'Content-type: application/force-download' ); header( "Content-Disposition: attachment; filename=\"$filename\"" ); echo $file_content; exit; }View on GitHub
Invoked by
Call hooks
API Letters:
