CodeIgniter Forums
I don't find the read_file function in the file system helper - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Feature Requests (https://forum.codeigniter.com/forumdisplay.php?fid=29)
+--- Thread: I don't find the read_file function in the file system helper (/showthread.php?tid=71937)



I don't find the read_file function in the file system helper - titounnes - 10-14-2018

Hi, J.P.
Why CI4 doesn't provide a funtion to read files in file_system_helper?


RE: I don't find the read_file function in the file system helper - kilishan - 10-14-2018

It's basically just file_get_contents().

CI 3 docs marked it as deprecated already, so in 4 it's gone. Much too close to the native command(s) to be necessary.


RE: I don't find the read_file function in the file system helper - titounnes - 10-15-2018

(10-14-2018, 08:23 PM)kilishan Wrote: It's basically just file_get_contents().

CI 3 docs marked it as deprecated already, so in 4 it's gone. Much too close to the native command(s) to be necessary.
Thanks for your explanation.