本文整理汇总了PHP中gallery::listImages方法的典型用法代码示例。如果您正苦于以下问题:PHP gallery::listImages方法的具体用法?PHP gallery::listImages怎么用?PHP gallery::listImages使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gallery
的用法示例。
在下文中一共展示了gallery::listImages方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
</div>
</div>
</div>
</div>
<div class='container' id='container'>
<!-- The Bootstrap Image Gallery lightbox, should be a child element of the document body -->
<div id="links">
<?php
foreach (gallery::listDirs() as $value) {
echo "<a href=\"?dir=" . htmlspecialchars(urlencode($value)) . "\">\n <img class='align' src=\"?folder=" . urlencode(end(explode('/', $value))) . "\" data-width='433' data-height='312'>\n </a>\n";
}
?>
<?php
$pocet = 0;
foreach (gallery::listImages() as $value) {
$size = getimagesize('data' . $value);
echo "<a href='#' onClick=\"\$('#thumb" . $pocet . "').attr('src', 'index.php?rotate=" . htmlspecialchars(urlencode($value)) . "'+'&date=' + new Date().getTime()); return false;\" title='" . end(explode('/', $value)) . "' data-gallery>";
echo "<img id='thumb" . $pocet . "' class='align lazy' src=\"index.php?thumb=" . htmlspecialchars(urlencode($value)) . "\" data-width=\"" . $size[0] . "\" data-height=\"" . $size[1] . "\">";
echo "</a>\n";
$pocet++;
}
?>
</div>
</div>
<script>
function rotate(id){
$("#myimg").attr("src", $("#myimg").attr("src")+"?timestamp=" + new Date().getTime());