0

这可能是一个非常愚蠢的问题,但我想不出任何可以帮助我更进一步的东西。我希望在我的页面导航中缩短 NUMBERS 的数量。

而不是像:1、2、3、4、5、6、7、8

我希望它像:1、2...7、8

当我转到2时,现在应该在数字组中看到数字3 。

这是我负责页码的代码:

<div id="user_nav_bottom">
<?php for($i=1; $i < sizeof($pages)+1; $i++) {
    $strong = ($_GET['page'] == $i) ? ' dark bold' : '';
    echo '<span class="normal' . $strong . '"><a href="imgit_images.php?page=' . $i . '">' . $i . ', </a></span>';
} ?>
</div>
4

4 回答 4

2

这是我为分页论坛编写的一段修改过的代码。

它的输出并不完全是你所展示的,而应该只是一个调整的问题。

<?php 
    //Set up vars

    $currentPage = isset($_GET["page"])? $_GET["page"] : 1;
    $numPages = count($pages);
    $numPages = 7;//cause I don't have the real var for testing

    $howMany = 1;
?>


<?php if ($numPages > 1): ?>
    <li>Page <?php echo $currentPage?> of <?php echo $numPages?></li>
    <?php if ($currentPage > 1): ?>
        <li><a href="imgit_images.php?page=1">First</a></li>
        <li><a href="imgit_images.php?page=<?php echo $currentPage-1?>">&lt;</a></li>
    <?php endif; ?>

    <?php if ($currentPage > $howMany + 1): ?>
        <li>...</li>
    <?php endif; ?>

    <?php for ($pageIndex = $currentPage - $howMany; $pageIndex <= $currentPage + $howMany; $pageIndex++): ?>
        <?php if ($pageIndex >= 1 && $pageIndex <= $numPages): ?>
            <li>
                <?php if ($pageIndex == $currentPage): ?>
                    <u>
                <?php endif; ?>

                <a href="imgit_images.php?page=<?php echo $pageIndex?>"><?php echo $pageIndex?></a>

                <?php if ($pageIndex == $currentPage): ?>
                    </u>
                <?php endif; ?>
            </li>
        <?php endif; ?>
    <?php endfor; ?>

    <?php if ($currentPage < $numPages - $howMany): ?>
        <li>...</li>
    <?php endif; ?>

    <?php if ($currentPage < $numPages): ?>
        <li><a href="imgit_images.php?page=<?php echo $currentPage+1?>">&gt;</a></li>
        <li><a href="imgit_images.php?page=-1">Last</a></li>
    <?php endif; ?>
<?php endif; ?>
于 2012-08-11T21:42:51.167 回答
2

看看这个:https ://codereview.stackexchange.com/a/10292 。此解决方案应该可以解决您的问题。我认为这是一个非常好的方法。

于 2012-08-11T21:46:46.487 回答
2

这个显示了当前请求的链接之前的两个链接和之后的两个链接:

<div id="user_nav_bottom">
<?php
$current = $_GET['page'];
$last = count($pages)+1;
$curr0 = $current-2;
$curr1 = $current+2;
if ($curr0<=1) {
  $curr0 = 1;
  $curr1 = $last>5? 5 : $last;
}
if ($curr1>=$last) {
  $curr0 = $last-4 < 1 ? 1 : $last-4;
  $curr1 = $last;
}
// now print all links:
echo '<a href="imgit_images.php?page=1">&#171;</a> ';
for ($i=$curr0; $i<=$curr1; $i++) {
  $style = ($i==$current)? 'font-weight:bold':'';
  echo ' <a href="imgit_images.php?page='.$i.'" style="'.$style.'">'.$i.'</a> ';
}
echo '<a href="imgit_images.php?page='.$last.'">&#187;</a> ';
?>
</div>

这显示了这样的链接: « 13 14 15 16 17 »
恕我直言,通过添加适当的条件来添加前五个和后五个链接并不难。

测试脚本在这里

于 2012-08-11T22:24:32.590 回答
0

您可能想要做的是使用我在此处的回答中描述的“对数”分页技术:

如何为很多很多页面进行页面导航?对数页面导航

如果将 LINKS_PER_STEP 设置为像 2 或 3 这样的低值,它将产生非常紧凑的输出。

于 2013-01-07T15:37:44.330 回答