php日誌分析小指令碼,分析出每行包含相同字串的統計數量(從大到小進行排序)

來源:互聯網
上載者:User

標籤:php   日誌   指令碼   

<?phpheader("Content-type:text/html;CharSet=utf-8");$file = fopen("sqlstr.txt", "r");$sql_arr=array();$i=0;//輸出文本中所有的行,直到檔案結束為止。while(! feof($file)){ $sql_arr[$i]= fgets($file);//fgets()函數從檔案指標中讀取一行 $i++;}fclose($file);$sql_arr=array_filter($sql_arr);//此處用變數$bianliang1來標識第一個數組$bianliang1=‘aaa‘;foreach ($sql_arr as $k => &$v) {$newarr[$k] = explode($bianliang1, $v);}//此處用變數$bianliang1來標識第二個數組$bianliang2=‘bbb‘;foreach ($newarr as $k => &$v) {if(!empty($v[1])){$newtwo[$k] = explode($bianliang2, $v[1]);}}foreach ($newtwo as $k => &$v) {$aaa[] = $v[0];}$i = count($aaa);$ok = array_count_values ($aaa);arsort($ok);echo ‘<pre>‘;echo "共".$i."條";echo ‘<br>‘;print_r($ok);?>


php日誌分析小指令碼,分析出每行包含相同字串的統計數量(從大到小進行排序)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.