id = $id; } /** * sets the directory * * @param string $directory */ public function setDirectory($directory) { $this->directory = $directory . DIRECTORY_SEPARATOR . $this->id; if (file_exists($this->directory) === false) { mkdir($this->directory, 0700, true); } } // more source code here... } ?>