将在magento之外创建的会话传递到magento站点

时间:2016-02-17 09:45:09

标签: php magento

我正在创建一个应用程序,其中我想在框架工作中做一些工作,如yii2或CI和magento中的某些部分,所以我想将在magento之外创建的会话传递给magento应用程序,反之亦然。 我想知道是否有可能完成这项任务以及如何完成?

1 个答案:

答案 0 :(得分:1)

是的,你可以使用magento session out side magento它之前已经解决了 你需要在你的文件中包含mage.php 像

 @Repository(value = "ser")
 public interface ServiceConfigRepository extends CrudRepository<ServiceConfig, Serializable> {

      @Query("select ser from ServiceConfig ser where ser.valid <> '启用'")
      public ServiceConfig findByVaild(String vild);
}