존재하지 않는 phpcms 이미지에 대한 해결 방법: 먼저 "attachments.php" 파일을 찾아서 연 다음 "if(empty($this->userid)){"를 "if(empty($_POST[')로 변경합니다. userid '])){"바로 그거예요.
PHPCMS v9에서 사진을 업로드할 때 "정의되지 않음" 프롬프트에 대한 솔루션
Put phpcmsmodulesattachmentattachments.php in
if(empty($this->userid)) {<code>if(empty($this->userid)){
改成 if(empty($_POST['userid'])){
因为在提交时$this->userid一定为空,但在调用时用到了
$attachment->set_userid($_POST['userid']);
if(empty($_POST['userid'])){
로 변경됨제출 시 $this->userid가 비어 있어야 하지만 다음 경우에 사용됩니다.
$attachment->set_userid($_POST['userid']);
🎜🎜를 호출하고 $_POST['userid']는 userid의 데이터입니다. 🎜🎜그러니 $this->userid를 $_POST['userid']로 변경하세요. 🎜위 내용은 존재하지 않는 phpcms 이미지에 대한 솔루션의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!