jquery-mobile/combine.php
2011-09-21 23:19:37 -07:00

27 lines
669 B
PHP

<?php
// Get the filetype and array of files
if ( ! isset($type) || ! isset($files) )
{
echo '$type and $files must be specified!';
exit;
}
$contents = '';
// Loop through the files adding them to a string
foreach ( $files as $file ) {
$contents .= file_get_contents($file). "\n\n";
}
// If gzip is supported, send the file gzipped
if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) {
ob_start("ob_gzhandler");
}
// Set the content type, filesize and an expiration so its not cached
header('Content-Type: ' . $type);
header('Content-Length: ' . strlen($contents));
header('Expires: Fri, 01 Jan 2010 05:00:00 GMT');
// Deliver the file
echo $contents;