Ben PHP için yeni ve Zend kullanarak kendim öğrenmeye çalışıyorum. Ben bizim iSeries bir dosya yüklemek gerekir ama o / tmp dizinle içine dosyayı koyarak tutar. Ben / Labphotos dizine gitmek istiyorum. Ben ama ben "SetDestination" değişkeninin belirlenen dizine dosya yüklerken interent kodu bulundu. İşte ben kullanıyorum kod pasajı
$file = new Zend_File_Transfer_Adapter_Http();
$file->setDestination('/labphotos');
try {
// upload received file(s)
$file->receive();
} catch (Zend_File_Transfer_Exception $e) {
print $e->getMessage();
}