本文整理匯總了PHP中eZURI::decodeURL方法的典型用法代碼示例。如果您正苦於以下問題:PHP eZURI::decodeURL方法的具體用法?PHP eZURI::decodeURL怎麽用?PHP eZURI::decodeURL使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類eZURI
的用法示例。
在下文中一共展示了eZURI::decodeURL方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: implode
}
}
$url = implode('/', $urlArray);
unset($urlArray);
}
if ($url) {
foreach (array_keys($Params['UserParameters']) as $key) {
if ($key == 'offset') {
continue;
}
$url .= '/(' . $key . ')/' . $Params['UserParameters'][$key];
}
$module->redirectTo('/' . $url);
} else {
if (isset($_SERVER['HTTP_REFERER'])) {
$preferredRedirectionURI = eZURI::decodeURL($_SERVER['HTTP_REFERER']);
// We should exclude OFFSET from $preferredRedirectionURI
$exploded = explode('/', $preferredRedirectionURI);
foreach (array_keys($exploded) as $itemKey) {
$item = $exploded[$itemKey];
if ($item == '(offset)') {
array_splice($exploded, $itemKey, 2);
break;
}
}
$redirectURI = implode('/', $exploded);
// Protect against redirect loop
if (strpos($redirectURI, '/user/preferences/set') !== false) {
$module->redirectTo('/');
} else {
eZRedirectManager::redirectTo($module, false, true, false, $redirectURI);