|
本帖最后由 huangwenping 于 2011-2-24 13:32 编辑
<?php
class Mytest extends Controller{
function __construct(){
parent::Controller();
$this->load->library('zip');
}
function index(){
$this->zip->read_dir('system/');
$this->zip->download('aa.zip');
}
}
源码如上? 应该没有bom问题?但是总显示一堆乱码在网页上?不能下载?? |
|