Google Analytics - Customizable and Interactive Rich Data For Your Website
?
計算流量的網(wǎng)站,首先你要有g(shù)mail的賬戶,并且你已經(jīng)在你的 Google Analytics 里面加入了你的網(wǎng)站,并且知道你的 Profile ID , 不知道也沒有關(guān)系,你可以在網(wǎng)址上獲得你的ID,例如,我加入我的博客 newyorkphper.iteye.com到我的 Google Analytics ,并且點(diǎn)擊EDIT(編輯)的鏈接之后,網(wǎng)址是 https://www.google.com/analytics/settings/profile_summary?id=24709731,這樣,24709731就是你的 Profile ID 。
?
如果覺得麻煩,那么可以用下面的程序獲得:
?
<?php define('ga_email','youremail@email.com'); define('ga_password','your password'); require 'gapi.class.php'; $ga = new gapi(ga_email,ga_password); $ga->requestAccountData(); foreach($ga->getResults() as $result) { echo $result . ' (' . $result->getProfileId() . ")<br />"; }?
?
下面的是代碼
?
?
?
?
How do I track dynamic sites?
If your website pages are created dynamically with a technology such as PHP or ASP, you can include the tracking code in a separate file that gets included as part of the overall page template.
?
The following example illustrates how you might do this using PHP, but the solution applies equally to any similar website technology (e.g. ASP or JSP). To track dynamic websites, please follow the steps below.
?
1. In a separate file, include the standard tracking code. For example, you might have a file called 'analyticsTracking.php' that contains the following:
?
<? <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-xxxxxx-x"); pageTracker._trackPageview(); </script> <?php // End Analytics tracking code ?>?
2. In the standard page template for your website, include the tracking code file before the closing </body> tag. Again, please note that this very simple example illustrates one way you might track dynamic websites using PHP, but the steps may be slightly modified depending on your particular website technology and the way your website pages are generated.
<html> <?php include ("header.php"); ?> <body> <?php include ("sideNav.php"); ?> <?php include ("main.php"); ?> <?php include ("analyticsTracking.php"); ?> </body> </html>?
?
?
?
?
?
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯(lián)系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
