2009-10-03 61 views
0

我有這樣的PHP代碼:點擊器計數器腳本無法正常工作!

<?php 
if(!file_exists('counter.txt')){ 
file_put_contents('counter.txt', '0'); 
} 
if($_GET['click'] == 'yes'){ 
file_put_contents('counter.txt', ((int) file_get_contents('counter.txt')) + 1); 
header('Location: ' . $_SERVER['SCRIPT_NAME']); 
die; 
} 
?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<title>counter</title> 
</head> 
<body> 
<h1><?php echo file_get_contents('counter.txt'); ?></h1> 
<a href="?click=yes">clickMe</a> 
</body> 
</html> 

這應該算的時候有人點擊某個鏈接的數量。

我將這段代碼保存在一個名爲index.php的文件中,然後在同一個目錄中創建了一個名爲counter.txt的文件(將counter.txt的權限設置爲666)。然而,當我運行該腳本談到了:

致命錯誤:調用未定義功能:file_put_contents()在/home/index.php第6行

我怎樣才能解決這個錯誤,並以某種方式顯示點擊鏈接在同一頁上點擊?

回答

3

如果file_put_contents()是不確定的,我的猜測是,你正在使用一個版本的PHP < 5.

如果是這樣的話,您將需要使用fopen()函數,fwrite來替換函數()和fclose(),另請參閱php manual page

+0

謝謝@ jeroen,幸運的是我的webhoster讓我切換我的php版本,修正了這個問題,非常感謝! – 2009-10-03 18:45:32

+0

不客氣! – jeroen 2009-10-03 18:46:40