Skip to content

Instantly share code, notes, and snippets.

View discountscott's full-sized avatar

Scott Moore discountscott

  • DF Supply, Inc.
  • Twinsburg, OH
View GitHub Profile

PHPExcel Cheat Sheet

Documentation

Snippets

Install.

composer require phpoffice/phpexcel
@discountscott
discountscott / MagentoSnippets.md
Last active March 4, 2019 20:49 — forked from davidalexander/gist:1086455
Magento Snippets

Magento Snippets

Clear cache/reindex

<?php
// clear cache
Mage::app()->removeCache('catalog_rules_dirty');
// reindex prices
Mage::getModel('index/process')->load(2)->reindexEverything();