select a.name name1,a.*,b.value,b.* from piwik_site a,piwik_archive_numeric_2013_10 b where b.period in(1,2,3) and b.name='nb_visits' and a.idsite=b.idsite order by b.value desc
創(chuàng)新互聯(lián)建站于2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都做網(wǎng)站、網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元昭平做網(wǎng)站,已為上家服務(wù),為昭平各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108
如果頁面顯示的是這個語句,那么最后一個應(yīng)該是select a.name name1,a.*,b.value,b.* from piwik_site
a,piwik_archive_numeric_2013_10 b where b.period in(1,2,3) and
b.name='nb_visits' and a.idsite=b.idsite order by b.value asc limit 1
或者先執(zhí)行一次select count(*) 拿到數(shù)量num,再select a.name name1,a.*,b.value,b.* from piwik_site
a,piwik_archive_numeric_2013_10 b where b.period in(1,2,3) and
b.name='nb_visits' and a.idsite=b.idsite order by b.value desc limit num-1,1
首先你需要知道,你文件的最后一行大概有多少個字節(jié)。假如你的文件路徑為C:/1.txt,最后一行大概有200個字節(jié)。那么你就這樣寫:
$handle=fopen("C:/1.txt","r");
fseek($handle,-200,SEEK_END);
$str=fgets($handle);
echo $str; //輸出最后一行
fclose($handle);
您使用了limit 0,1就只有一條了,就是你要的最后一條。也許你問的問題沒有說清楚