jquery-mobile/combine.php
2011-06-09 01:51:37 -07:00

17 lines
No EOL
309 B
PHP

<?php
if ( ! isset($type) || ! isset($elements) )
{
echo '$type and $elements must be specified!';
exit;
}
$contents = '';
foreach ( $elements as $file ) {
$contents .= file_get_contents($file). "\n\n";
}
header('Content-Type: ' . $type);
header('Content-Length: ' . strlen($contents));
echo $contents;