溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

phpcms上傳文件的方法

發(fā)布時(shí)間:2020-08-21 14:29:26 來(lái)源:億速云 閱讀:291 作者:小新 欄目:建站服務(wù)器

phpcms上傳文件的方法?這個(gè)問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個(gè)問題能讓你收獲頗深。下面是小編給大家?guī)?lái)的參考內(nèi)容,讓我們一起來(lái)看看吧!

phpcms怎么上傳文件?phpcms前端頁(yè)面上傳文件

PHPCMS其實(shí)有一個(gè)叫做附件的模塊,上傳用的就是這個(gè)東西,現(xiàn)在我們來(lái)看一下對(duì)應(yīng)的文件:phpcms\modules\attachment \attachments.php就是這個(gè)文件,大概在29行上(我用的PHPCMS版本號(hào)是Phpcms V9.5.8 Release 20140929)有下面一個(gè)方法:

public function upload() { $grouplist = getcache('grouplist','member');   //獲取緩存中身份分組的列表
        if($this->isadmin==0 && !$grouplist[$this->groupid]['allowattachment']) return false;   //判斷是否允許上傳附件
        pc_base::load_sys_class('attachment','',0);   //加載attachment類
        $module = trim($_GET['module']);  //通過get方式獲取模型
        $catid = intval($_GET['catid']);  //通過get方式獲取catid
        $siteid = $this->get_siteid();   //獲取站點(diǎn)ID
        $site_setting = get_site_setting($siteid);   //獲取站點(diǎn)配置信息,這個(gè)函數(shù)在此模塊中的公共函數(shù)global.func.php中可以找到
        $site_allowext = $site_setting['upload_allowext'];  //獲取到允許的上傳文件類型 
        $attachment = new attachment($module,$catid,$siteid);   //實(shí)例化attachment類,就是上面剛剛提到的加載進(jìn)來(lái)的類
        $attachment->set_userid($this->userid);  //調(diào)用attachment類的set_userid函數(shù),確定是哪個(gè)用戶上傳的。
        $a = $attachment->upload('upload',$site_allowext);  //上傳文件,具體的函數(shù)請(qǐng)查看attachment類。
        if($a){     //下面這些就是上傳成功后的一些路徑和文件名什么的了~
            $filepath = $attachment->uploadedfiles[0]['filepath']; $fn = intval($_GET['CKEditorFuncNum']); $this->upload_json($a[0],$filepath,$attachment->uploadedfiles[0]['filename']); $attachment->mkhtml($fn,$this->upload_url.$filepath,''); } }

以上應(yīng)該解釋的比較詳細(xì)了,不懂的話可以自己看一下對(duì)應(yīng)的文件,好了現(xiàn)在我們來(lái)看前端:

<form method="post" enctype="multipart/form-data" action="/index.php?m=attachment&c=attachments&a=upload" id="uploadload" target="iframelogo">
        <input type="file" class="uploadtxt" name="upload" /><input type="submit" value="dianji" />
</form>

這個(gè)就是上傳用的~注意調(diào)用的action的路徑就好了~再就是這里的<input type=file name="upload">的name屬性必須為upload否則無(wú)法上傳成功,因?yàn)樵赼ttachment類中定死了上傳的name屬性,所以 這里只能用這個(gè)了~

感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)phpcms上傳文件的方法大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI