コード例 #1
0
ファイル: index.php プロジェクト: s-ichikawa/resource_loader
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<?php 
include_once __DIR__ . '/../../src/resource.php';
$resource = new ResourceLoader();
$resource->output('css');
$resource->output('js');
?>
</body>
</html>
コード例 #2
0
ファイル: index.php プロジェクト: s-ichikawa/resource_loader
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<?php 
include_once __DIR__ . '/../src/resource.php';
$resource = new ResourceLoader();
$resource->output('js');
?>
</body>
</html>