PHP fopen() function is used to open files or URLs and returns a resource. The fopen() function accepts two arguments: $filename and $mode. The $filename represents the file to be opened and $mode represents the file mode, for example, read-only, read-write, write-only, etc.
fopen(filename,mode,include_path,context)
Mode | Description |
---|---|
r | Opens file in read-only mode. It places the file pointer at the beginning of the file. |
r+ | Opens file in read-write mode. It places the file pointer at the beginning of the file. |
w | Opens file in write-only mode. It places the file pointer to the beginning of the file and truncates the file to zero length. If the file is not found, it creates a new file. |
w+ | Opens file in read-write mode. It places the file pointer to the beginning of the file and truncates the file to zero length. If the file is not found, it creates a new file. |
a | Opens file in write-only mode. It places the file pointer to the end of the file. If the file is not found, it creates a new file. |
a+ | Opens file in read-write mode. It places the file pointer to the end of the file. If the file is not found, it creates a new file. |
x | Creates and opens the file in write-only mode. It places the file pointer at the beginning of the file. If file is found, fopen() function returns FALSE. |
x+ | It is same as x but it creates and opens file in read-write mode. |
c | Opens file in write-only mode. If the file does not exist, it is created. If it exists, it is neither truncated (as opposed to 'w'), nor the call to this function fails (as is the case with 'x'). The file pointer is positioned on the beginning of the file |
c+ | It is the same as c but it opens the file in read-write mode. |
<?php
$fileOpen= fopen("your file pathfile.txt", "r");
$fileOpen= fopen("test.txt","r");
$fileOpen= fopen("/home/test/file.txt","r");
$fileOpen= fopen("/home/test/file.gif","wb");
$fileOpen= fopen("http://www.easytolearning.com/","r");
$fileOpen= fopen("ftp://user:password@easytolearning.com/file.txt","w");
?>
<?PHP
$getFile= fopen("myFile.txt", "r");
while (!feof($getFile)) {
$line_of_text = fgets($getFile);
print $line_of_text . "<BR>";
}
fclose($getFile);
?>
© 2024 Easy To Learning. All Rights Reserved | Design by Easy To Learning