Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Diego Chiarelotto

Forçar download mp3

Recommended Posts


$filename = 'images/chibi_kakashi.jpg';

$length = filesize( $filename );

 

header( 'Content-Type: application/force-download' );

header( 'Content-type: application/octet-stream' );

header( sprintf( 'Content-Length: %u', $length ) );

header( sprintf( 'Content-disposition: attachment; filename="%s"', basename( $filename ) ) );

header( 'Pragma: no-cache' );

header( 'Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0' );

header( 'Expires: 0' );

 

readfile( $filename );

flush( );

exit;

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.