jquery-mobile/combine.php

17 lines
309 B
PHP
Raw Normal View History

2010-09-10 22:23:13 +00:00
<?php
2011-06-09 08:51:37 +00:00
if ( ! isset($type) || ! isset($elements) )
{
2011-06-09 08:51:37 +00:00
echo '$type and $elements must be specified!';
exit;
}
$contents = '';
2011-06-09 08:51:37 +00:00
foreach ( $elements as $file ) {
$contents .= file_get_contents($file). "\n\n";
}
2011-06-09 08:51:37 +00:00
header('Content-Type: ' . $type);
header('Content-Length: ' . strlen($contents));
echo $contents;