Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有要重定向的当前链接:
if(stripos($_SERVER['REQUEST_URI'], 'post.php?post=5')!==false){ //redirect }
但是如果帖子 ID 是 post=55 它也会重定向......如何解决这个问题?
为什么不使用 $_GET 变量?
if (isset($_GET['post']) && $_GET['post'] == 5) { ... }