94hwan-PHP框架基本原理

Source:94hwan 与众不同  Author:网络部
2011-09-20 16:06

通用文件上传类

使用方法:

  1. $upload = new cls_upload( $upconfig ); 
  2. $filename = $upload->upload('表单名'); 


$upconfig 参数

array( 'upload_path' => PATH_ROOT.$GLOBALS['config']['upload_dir'],
           'type_limit' => array('jpg', 'png', 'gif'),
            'size_limit' => 60 * 1024,
            'is_strict' => false   //严格检查模式(目前没使用)
 );

 

 

...