たとえば、リファラーURLがあります。前のページのモジュールに従ってページにリダイレクトしたい。
質問する
1183 次
1 に答える
2
このページにはコードスニペットがあります。前のページのモジュールとアクションを取得するには、リファラーを使用します。
$referer = sfContext::getInstance()->getRequest()->getReferer();
// you have to check if the referer is not empty and is a page of your site
....
// then get the module and action:
$url = parse_url($referer);
$path = trim($url['path'], '/');
if (!sfConfig::get('sf_no_script_name') && $pos = strpos($path, '/') )
{
$path = substr($path, $pos+1);
}
$params = sfContext::getInstance()->getRouting()->findRoute('/'.$path);
$module = $params['parameters']['module'];
$action = $params['parameters']['action'];
于 2012-05-20T10:34:16.830 に答える