我想在Zend框架中上傳文件。我在表格下面的代碼:在Zend Framework中Zend_Form_Element_File的setDestination方法中給出的路徑
$this->addElementPrefixPath('App', 'App/');
$this->setName('upload');
$this->setAttrib('enctype', 'multipart/form-data');
$description = new Zend_Form_Element_Text('description');
$description->setLabel('Description')
->setRequired(true)
->addValidator('NotEmpty');
$file = new Zend_Form_Element_File('file');
$path="/images";
$file->setDestination($path)
->setLabel('File')
->setRequired(true)
->addValidator('NotEmpty');
$submit = new Zend_Form_Element_Submit('submit');
$submit->setLabel('Upload');
$this->addElements(array($description, $file, $submit));
我使用NetBeans和我有公共文件夾下的圖片的文件夾。我想,所有的文件都上傳到圖片文件夾,但是當我運行該項目也給出了錯誤的
給定的目標不是一個目錄或者不存在
如果我給的完整路徑C:\Users\398853\Documents\NetBeansProjects\ZendWithFileUpload\public\images
則運行良好,文件上傳到圖像文件夾。但是當我給$path='/images'
它說上面的錯誤'爲什麼?應該給出什麼路徑?謝謝。