コード例 #1
0
ファイル: FileSystemService.php プロジェクト: kittolau/gcm
 public static function imgPhysicalPathBuilder($mainFolderName, $subFolderName, $fileName_withExstension)
 {
     $relativeFilePath = FileSystemService::imgPhysicalPathBuilder($mainFolderName, $subFolderName, $fileName_withExstension);
     $appRootPath = Yii::getPathOfAlias('webroot') . '/';
     // e.g. 'c:/htdocs/'
     $physicalPath = $appRootPath . $relativeFilePath;
     return $physicalPath;
 }