Пример #1
0
 function export(array $items)
 {
     include_once dirname(dirname(__FILE__)) . '/models/htaccess.php';
     $htaccess = new Red_Htaccess();
     $filename = 'redirection-' . date_i18n(get_option('date_format')) . '.htaccess';
     header('Content-Type: application/octet-stream');
     header('Cache-Control: no-cache, must-revalidate');
     header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
     header('Content-Disposition: attachment; filename="' . $filename . '"');
     foreach ($items as $item) {
         $htaccess->add($item);
     }
     echo $htaccess->generate();
 }