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. その後test.php、ブラウザーで呼び出して、自分が何をしているかを確認することができました。 Magento 2でも同じことができますか?