Bootstrap Adobe Commerce 2 dans un script sandbox
Pour initialiser une application Adobe Commerce 2 dans un exemple de script sandbox, exécutez le script suivant à partir du répertoire racine Adobe Commerce :
<?php
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 1);
require __DIR__ . '/app/bootstrap.php';
$bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
$objectManager = $bootstrap->getObjectManager();
//$model = $objectManager->get('Vendor\Module\Some\Model');
recommendation-more-help
8bd06ef0-b3d5-4137-b74e-d7b00485808a