所以我想知道一些事情。
而不是在函数中传递URL,例如:
paginate('SELECT * FROM posts WHERE topic_id = $id', 'forum/?action=thread&threadid=292', $perPage)
paginate('SELECT * FROM news_comments WHERE news_id = $id', 'index.php?action=comments&id=17', $perPage)
paginate('select * from ?', 'another page', $perPage)
paginate('select * from ?', 'another page', $perPage)
我希望php找出当前的url / script。 显然这不会起作用(它确实有效,但我的意思是看它)
$_SERVER['REQUEST_URI'];
forum/?action=thread&threadid=10&page=2&page=3&page=4&page=5&page=6&page=7&page=8&page=9
我只想要当前的$_GET['page']
有任何建议/想法吗?
答案 0 :(得分:0)
也许传递一个current_page变量?
forum/?action=thread&threadid=10¤t_page=5&page=2&page=3&page=4&page=5&page=6&page=7&page=8&page=9
然后你可以这样做:
$_GET['current_page']