您好,登錄后才能下訂單哦!
phpcms上傳文件的方法?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!
phpcms怎么上傳文件?phpcms前端頁面上傳文件
PHPCMS其實有一個叫做附件的模塊,上傳用的就是這個東西,現在我們來看一下對應的文件:phpcms\modules\attachment \attachments.php就是這個文件,大概在29行上(我用的PHPCMS版本號是Phpcms V9.5.8 Release 20140929)有下面一個方法:
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(); //獲取站點ID $site_setting = get_site_setting($siteid); //獲取站點配置信息,這個函數在此模塊中的公共函數global.func.php中可以找到 $site_allowext = $site_setting['upload_allowext']; //獲取到允許的上傳文件類型 $attachment = new attachment($module,$catid,$siteid); //實例化attachment類,就是上面剛剛提到的加載進來的類 $attachment->set_userid($this->userid); //調用attachment類的set_userid函數,確定是哪個用戶上傳的。 $a = $attachment->upload('upload',$site_allowext); //上傳文件,具體的函數請查看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,''); } }
以上應該解釋的比較詳細了,不懂的話可以自己看一下對應的文件,好了現在我們來看前端:
<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>
這個就是上傳用的~注意調用的action的路徑就好了~再就是這里的<input type=file name="upload">的name屬性必須為upload否則無法上傳成功,因為在attachment類中定死了上傳的name屬性,所以 這里只能用這個了~
感謝各位的閱讀!看完上述內容,你們對phpcms上傳文件的方法大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。