2015-01-03 101 views
0

我有一個向其他地方發送curl請求的網站,它也有一個登錄系統。無論如何要記錄從一個用戶帳戶發送多少個curl請求?計算來自用戶的cURL請求

感謝

+0

向我們展示你的代碼爲捲曲請求和記錄系統。在創建cURL請求的代碼中,添加日誌記錄。 – Veve

+0

在用戶表中創建一個名爲'curl_requests'的列。每當你提出一個cURL請求時,你將這個值增加1。 –

回答

0

創建count函數並執行它的每一個用戶做的捲曲請求時間:

<?php 

function count() { 

    $currentAmount = "whatever (integer value)"; // Get from database (e.g. from the field "curl_requests") or text file 

    $newAmount = $currentAmount + 1; 

    set_new_amount($username, $newAmount); // Update to database or text file 

} 

?>