作品タイトルなど

作品サブタイトルなど

          

 
Buffer..


作品情報

jsはこちら。

プレイリストの作り方(大抵動く。)


<div class="list-group">
<?php
$i = 0;
$dir_h = opendir(getcwd()) ;
while (false !== ($file_list[] = readdir($dir_h))) ;
closedir( $dir_h ) ;
natsort($file_list);
foreach($file_list as $strPath) {
if($strPath!="." && $strPath!=".." && $strPath!=".htaccess" && $strPath!="index.php" && $strPath!=".DS_Store" && $strPath!="") {
print('<a class="list-group-item" id="'.$i.'" onClick="MediaReload(\''.$strPath.'\')">'.str_replace(".mp4","",$strPath)."</a>".PHP_EOL);
$i++;
}
}
?>
</div>

<script type="text/javascript">
Playlist = {
<?php
$i = 0;
foreach($file_list as $strPath) {
if($strPath!="." && $strPath!=".." && $strPath!=".htaccess" && $strPath!="index.php" && $strPath!=".DS_Store" && $strPath!="") {
print('"'.str_replace("\"","\\\"",$strPath).'" : '.$i.','.PHP_EOL);
$i++;
}
}
?>
};
</script>

Copyright (C) 2015 [YOUR NAME]