コード例 #1
0
ファイル: Mail.php プロジェクト: rendix2/QW_MVS
 public function setTextFromFile($filePath)
 {
     try {
         $file = new File($filePath, FALSE);
     } catch (IllegalArgumentException $e) {
         throw new MailException($e->getMessage());
     }
     $this->text = $this->mimeHeaderEncode($file->getContent());
 }
コード例 #2
0
ファイル: Folder.php プロジェクト: rendix2/QW_MVS
 public function __destruct()
 {
     parent::__destruct();
 }