I am trying to follow this tutorial https://www.codeigniter.com/user_guide/helpers/file_helper.html and then I make this controller to display the file txt content which I call test.txt
class File_controller extends CI_Controller {
function __construct(){
parent::__construct();
$this->load->helper('url');
$this->load->helper('file');
}
public function index()
{
$string = read_file(base_url().'test.txt');
echo $string;
}
}
when I am testing this in browser no error is found, but the program is not displaying my file txt content,so
1.how to display test.txt correctly?
2.what the meaning is this parameter:
'./path/to/file.php'
when I am using
read_file('./path/to/file.php');
First off edit your project index.php and set the environment to development so that errors are properly displayed. You do have an error its just suppressed with this change it will show you your errors. First one I can spot myself I think - the php function is actually
readfile()
notread_file()
. For your use I think you will findfile_get_contents()
works better.As regards your file path. As you have it your text file needs to be at the root of the project at the same level as your index.php file. It also will need to be readable. With error reporting in development mode you will get an error if any issues with path or permissions