siddharth_application/application/third_party/dompdf/www/controller.php
saravanakumar_kandasami 9a4c13b92a updated code for demo
2017-03-28 11:30:22 +05:30

15 lines
341 B
PHP

<?php
$cmd = isset($_GET["cmd"]) ? $_GET["cmd"] : null;
include "../dompdf_config.inc.php";
switch ($cmd) {
case "clear-font-cache":
$files = glob(DOMPDF_FONT_DIR."*.{ufm,afm}.php", GLOB_BRACE);
foreach($files as $file) {
unlink($file);
}
echo count($files)." cache files removed. Refresh page.<br />";
break;
}