11
test.php 스크립트에서 Magento 2를 어떻게 부트 스트랩 할 수 있습니까?
magento 1에서 Mage_Core_Model_App클래스 를 인스턴스화하는 데 필요한 파일을 만든 다음 테스트 목적으로 "더러운"코드를 추가 할 수있었습니다. 이와 같은 것 test.php: <?php //some settings error_reporting(E_ALL | E_STRICT); define('MAGENTO_ROOT', getcwd()); $mageFilename = MAGENTO_ROOT . '/app/Mage.php'; require_once $mageFilename; Mage::setIsDeveloperMode(true); ini_set('display_errors', 1); umask(0); //instantiate the app model Mage::app(); //my toy code in here. 그런 …