class File extends CI_Controller
{
function __construct()
{
parent::__construct();
$this->load->helper('file');
}
function writetest()
{
$data = "Hello World!";
$file= "application.DIRECTORY_SEPERATOR.test_data.DIRECTORY_SEPERATOR.helloworld.txt";
$write_file($file,$data);
echo "finished writing";
}
此代碼顯示在笨以下錯誤消息:功能名稱必須是字符串中/var/www/html/fazrin/application/controllers/file.php上線18
A PHP Error was encountered
Severity: Notice
Message: Undefined variable: Write_file
Filename: controllers/file.php
Line Number: 18
Fatal error: Function name must be a string in /var/www/html/fazrin/application/controllers/file.php on line 18
這是18行:
$write_file($file,$data);