mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 14:30:28 +00:00
17 lines
No EOL
309 B
PHP
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; |