本文整理匯總了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());