Я использую этот код, но не могу загрузить файлы excel
и doc
.
public function download_document($fileName=null){
if ($fileName) {
$file = realpath ( "uploads/user_img" ) . "\\" . $fileName;
// check file exists
if (file_exists ( $file )) {
// get file content
$data = file_get_contents ( $file );
//force download
force_download ( $fileName, $data );
} else {
// Redirect to base url
redirect ( base_url () );
}
}
}