简体   繁体   中英

Javascript or PHP or Zend Framework - how to check previous url?

Note: For marketting analyze, this url is in many other websites (ex: http://mysite.com/marketting ). So user clicks it and comes to my site.

Problem: But how can i check from where he came from? Did he came from facebook/ or google.com/ stackoverflow.com or wordpress.com or etc.com

How can you find, which link he clicked and reached to my site???

Tried:
i tried javascript: 
/* Doesnt provide previous url, if i am not in my localhost */
/* so, doesnt work */
var referer = document.referer;

/* PHP/ZF - doesnt work, cant get from where it came */
Zend_Debug::dump($_SERVER['REQUEST_URI'] . $_SERVER['HTTP_REFERER']);


$locale = new Zend_Locale();
// Return all default locales
$found = $locale->getDefault();
print_r($found);

// Return only browser locales
$found2 = $locale->getDefault(Zend_Locale::BROWSER,TRUE);
print_r($found2);

$found3 = $locale->getEnvironment(); // getBrowser()
print_r($found3);

使用PHP轻松完成:

$_SERVER['HTTP_REFERER']

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM