duangan7834 2018-02-03 06:52
浏览 18
已采纳

设置分页号的URL

I have some problems generating the url i want to put in my pagination numbers. I'm setting the url inside a class with

$this->url = rtrim($_SERVER['REQUEST_URI'], " /");

then inside another class I'm setting the href value on the pagination number with

echo "<a class='active' href='".$this->page->url."/".$i."/'>".$i."</a>";

So when i now navigate to my page the url is like this

localhost/designv2/blog/

Then when i click on number 1 in the pagination i get

localhost/designv2/blog/1/

But, then when i click on number 2 in the pagination i get

localhost/designv2/blog/1/2

And if i click on number 3 i get

localhost/designv2/blog/1/2/3

Why, does it keep on adding numbers to the url instead of replacing the old number?

I could split up the url, run it through a for loop and remove the last parameter but I'm using this url for other things on my pages aswell so i cant just remove the last parameter.

Any suggestions?

  • 写回答

2条回答 默认 最新

  • duanmu2013 2018-02-03 07:23
    关注

    Before appending ID at the last in url, check and remove ID if exist.

    Instead

    $this->url = rtrim($_SERVER['REQUEST_URI'], " /");
    

    Replace last occurence of /\/[0-9]\/$/ here (/1/ or /2/) to /.Try something like this

    $url = $_SERVER['REQUEST_URI'];
    $regex = '/\/[0-9]\/$/';
    $this->url = preg_replace($regex, '/', $url);
    

    Live demo

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么