我正在嘗試做一個網絡計數器,計數誰訪問我的網站。PHP網絡計數器
我使用txtfile作爲計數器,但是當我開始加載我的網頁時遇到了錯誤。
消息:file_put_contents()[function.file-把-內容]:文件名不能爲空
<?php if(! defined('BASEPATH')) exit('No direct script access allowed');
class Login extends CI_Controller{
function _construct(){
parent::__construct();
}
function index(){
//Function Web Counter (count visitor)
$filename = 'counterePOD.txt';
function inc_count() {
global $filename;
if (file_exists($filename)){
$current_value = file_get_contents($filename);
}else{
$current_value = 0;
}
file_put_contents($filename, ++$current_value);
}
inc_count();
}
$this->load->view('login_view');
}
}
?>
有人能告訴什麼是錯誤味精的確切含義:「文件名不能爲空」? ?
我的txtcounter(counterePOD.txt)沒有統計。 –
檢查該文件的寫入權限 – tCode
對不起,但如何檢查該權限? –