Lines Matching +full:v +full:- +full:hope
14 * This library is distributed in the hope that it will be useful,
21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA
26 * @copyright 1997-2005 The PHP Group
28 * @version CVS: $Id: AddBaseName.php,v 1.1 2005/06/02 22:45:58 vincentlascaux Exp $
44 if (substr($baseName, -1) == '/') {
45 $this->baseName = $baseName;
47 $this->baseName = $baseName.'/';
50 $this->writer =& $writer;
56 function newFile($filename, $stat = array(), $mime = "application/octet-stream")
58 $this->writer->newFile($this->baseName.$filename, $stat, $mime);
64 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream")
66 $this->writer->newFromTempFile($tmpfilen $this->baseName.$filename, $stat, $mime);
74 return $this->writer->newFileNeedsMIME();
82 $this->writer->writeData($data);
90 $this->writer->writeFile($filename);
98 $this->writer->close();