Read Svelte dist File in php


<?php 
	$path = WWW_ROOT."svelte/dist/assets" ;
    $files = array_diff(scandir($path), array('.', '..'));
	foreach($files AS $key => $val){
			$file_parts = pathinfo($val);
		if($file_parts['extension'] == 'js'){	
			?>
				<script type="module" src="<?php echo Router::url('/', true) ; ?>svelte/dist/assets/<?php echo $val ; ?>"></script>
			<?php
		}else{
			?>
				<link rel="stylesheet" type="text/css" href="<?php echo Router::url('/', true) ; ?>svelte/dist/assets/<?php echo $val ; ?>">
			<?php

		}
	}
    
?>

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *