$func 是什么意思,怎么来的
LiuBo
LiuBo 2017-08-24 17:48:28
0
1
1815

        $func = 'image'.$type;
        
        //处理path路径 是否启用随机文件名    
        if($isRanName)
        {
            $name = uniqid().'.'.$type;
        }else{
            $pathinfo = pathinfo($soruce);
            //var_dump($pathinfo);
            
            $name = $pathinfo['filename'].'.'.$type;
        }
        
        $path = rtrim($path,'/').'/'.$name;
        
        $func($soruceRes,$path);
        
        imagedestroy($soruceRes);
        
        imagedestroy($waterRes);
        
    }

LiuBo
LiuBo

全部回复(1)
Ty80

$func = 'image'.$type;
$func($soruceRes,$path);


$func是动态拼接的函数名。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板