exit()能输入错误内容,却不能return,求指教
phpcn_u1088
phpcn_u1088 2017-03-09 21:25:14
0
2
1010

    /**
     *显示错误
     */
    protected function showError(){
//        exit('<span style="color:red">'.$this->error.'</span>');
        return $this->error;
    }
    /**
     * 上传文件
     * @return string
     */
    public function uploadFile(){
        if($this->checkError()&&$this->checkSize()&&$this->checkExt()&&$this->checkMime()&&$this->checkTrueImg()&&$this->checkHTTPPost()){
            $this->checkUploadPath();
            $this->uniName=$this->getUniName();
            $this->destination=$this->uploadPath.'/'.$this->uniName.'.'.$this->ext;
            $this->newfile=$this->uniName.'.'.$this->ext;
            if(@move_uploaded_file($this->fileInfo['tmp_name'], $this->destination)){
//                return  $this->destination;
                return array ($this->uniName.'.'.$this->ext);
            }else{
                $this->error='文件移动失败';
                $this->showError();
            }
        }else{
            $this->showError();
        }
    }

phpcn_u1088
phpcn_u1088

모든 응답(2)
数据分析师

exit()에 잘못된 내용을 입력했는데 돌아올 수 없습니다. 조언 부탁드립니다-PHP 중국어 사이트 Q&A-exit()에서 잘못된 내용을 입력했지만 돌아올 수 없습니다. 조언 좀 주세요-PHP 중국어 사이트 Q&A

보시고 배우시기 바랍니다.

PHPzhong

exit() 函数输出一条消息,并退出当前脚本。

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!