«directory» 태그된 질문

4
phtml magento 2에서 루트 디렉토리 경로를 얻는 방법은 무엇입니까?
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $storeManager = $objectManager->get('\Magento\Store\Model\StoreManagerInterface'); $mediaPath = $fileSystem->getDirectoryRead(\Magento\Framework\App\Filesystem\DirectoryList::MEDIA)->getAbsolutePath(); 미디어 경로를 반환합니다. phtml 페이지에서 프로젝트의 루트 경로를 얻는 방법은 무엇입니까?

4
magento 2의 phtml 파일에서 미디어 디렉토리 경로를 얻는 방법은 무엇입니까?
미디어 디렉토리 경로 를 얻기 위해 아래 방법을 사용 했지만 오류를 반환합니다. $om = \Magento\Core\Model\ObjectManager::getInstance(); $directoryList = $om->get(\Magento\App\Filesystem\DirectoryList::class); $pubMediaDir = $directoryList->getPath(\Magento\App\Filesystem\DirectoryList::MEDIA); 해결책을 찾도록 도와주세요.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.