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

    /**
     *显示错误
     */
    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

Antworte allen(2)
数据分析师

exit()能输入错误内容,却不能return,求指教-PHP中文网问答-exit()能输入错误内容,却不能return,求指教-PHP中文网问答

围观一下哦,学习一下。

PHPzhong

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

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!