PHP如果请求的URL如

时间:2011-12-15 20:08:37

标签: php string string-search

我想知道如何做'如果请求的网址'声明。例如,我目前有以下代码,但我想在route = checkout /

之后在所有位置应用基础,图标和徽标

通配符值是多少?我在正确的路线上吗?

<?php
if($_SERVER["REQUEST_URI"]=="/index.php?route=checkout/checkout")
$base='https://domain.co.uk/>';
$icon='/image/data/favicon.png';
$logo='/image/data/logo.png';
?>

1 个答案:

答案 0 :(得分:2)

Strpos也许就是你想要的?

if (strpos($_SERVER['REQUEST_URI'], '/index.php?route=checkout') !== false) {
// Do your stuff here.
}