Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在考虑建立某种机制,将数据导入 Magento 数据库。但是,正如我在文档中所读到的,如果可能,建议默认使用 Magento 中可用的模型。
我的问题是,是否可以使用模型方法,而不创建 Magento 模块,然后从命令行执行此代码?
或者最好的想法是使用模块,但如果我打算构建两种导入机制,其中一个使用自定义表(也许我可能需要一个更多的表来进行一次自定义,但这个表会分开),另一个使用表Magento 中可用的型号和型号?
要引导 Magento 并从命令行使用它,请创建一个php以以下开头的文件:
php
<?php require_once '../Mage.php'; //correct path to Mage.php $app = Mage::app(); Mage::register('isSecureArea', true);