PHPCMS v9上传图片提示"undefined"的解决办法

把phpcms\modules\attachment\attachments.php中
将 if(empty($this->userid)){
改成 if(empty($_POST['userid'])){
因为在提交时$this->userid一定为空,但在调用时用到了$attachment->set_userid($_POST['userid']);
而$_POST['userid']即是userid的数据。因此将$this->userid改成$_POST['userid']即可。

上一篇:java冒泡排序-选择排序-插入排序-使用API中文文档直接调用函数


下一篇:方法object面试题分析:7JAVA中Object的clone方法详解-克隆-深克隆