Answers for "remove cache in magento in code"

3

magento 2 command line clear cache

php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento cache:disable
Posted by: Guest on September-08-2020
0

remove cache in magento in code

<?php
    $command = 'php bin/magento cache:clean && php bin/magento cache:flush';
    echo '<pre>' . shell_exec($command) . '</pre>';
?>
Posted by: Guest on April-25-2022

Browse Popular Code Answers by Language