What is the use of file in php?
For instance, if I have a file that contains this:
Hello
This
Is
My
File
Then this is how the file function returns it:
<?php
$contents = file("myfile.txt");
print_r($contents);
?>
which prints
Array
(
[0] => Hello
[1] => This
[2] => Is
[3] => My
[4] => File
)
Comment on this Question and Answer >>>
ASK A QUESTION
More files PHP Questions
I am trying to find the most recent directory that I am working in. example http://www.mysite.com/apples/index.php how do I get php to find the directory "apples" so I can make it a directoryHello, I have a php file that has octet binary numbers in it. How can I see the actual wording? This is an example of how it look: 00111010 11010010 And so on.
How can i upload large files like mp3 songs using php?
How can I export data into Word/Excel documents?
How do I open a file to write content to?
