コード例 #1
0
ファイル: Illust.php プロジェクト: kittolau/gcm
 /** @public-query-method */
 public function getAllImgSrcPhysicalPath()
 {
     $allImgSrc_array = $this->getMangaAllImgSrc();
     $resultArr = array();
     $rootPath = FileSystemService::getRootPath();
     foreach ($allImgSrc_array as $imgSrc) {
         array_push($resultArr, $rootPath . $imgSrc);
     }
     return $resultArr;
 }