1234567891011 |
- <?php
- defined('ONLY_ONLY_ONLY') or exit('Access Denied');
- try{
- $fileUrlPath=input_file_upload('uploadfile','imglist');
- $ajaxRes->Result=array(
- "imgUrl"=>$fileUrlPath
- );
- }catch(Throwable $e){
- $friendMsg=get_class($e)=='GeneralException'?$e->friendmsg:"非常抱歉,处理业务时发生错误";
- throw new GeneralException("处理业务发生错误",$friendMsg,"KLY_ZTest",0,$e);
- }
|