Immer wenn wir den Inhalt einer Datei in einen String in PHP einlesen möchten, verwenden wir eine Funktion namens file_get_contents(). Diese Funktion kann Speicherzuordnungstechniken verwenden, um die Leistung zu verbessern, sofern dies vom Betriebssystem unterstützt wird. Bei erfolgreichem Zugriff und Lesen des Inhalts der angegebenen Datei gibt diese Funktion den Inhalt der Datei in einer Zeichenfolge zurück. Und wenn die Funktion nicht in der Lage ist, auf die angegebene Datei zuzugreifen oder den Inhalt der angegebenen Datei zu lesen, wird von dieser Funktion „false“ zurückgegeben und der Pfad zum Speicherort, an dem sich die zu lesende Datei befindet, wird als Parameter an diese Funktion übergeben .
WERBUNG Beliebter Kurs in dieser Kategorie Content-Marketing-Beherrschung: Erfolgsstrategien – Spezialisierung | 4-Gänge-ReiheStarten Sie Ihren kostenlosen Softwareentwicklungskurs
Webentwicklung, Programmiersprachen, Softwaretests und andere
Die Syntax zum Deklarieren der Funktion file_get_contents() in PHP lautet wie folgt:
file_get_contents(path_to_the_file);
wobei path_to_the_file der Pfad zu der Datei ist, in der die Dateien vorhanden sind, deren Inhalt von der Funktion file_get_contents() in einen String eingelesen werden soll.
Hier sind die folgenden Beispiele aufgeführt
PHP-Programm zum Lesen des Inhalts der Datei an dem Speicherort, dessen Pfad als Parameter an die Funktion file_get_contents() übergeben wird:
Code:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/check.txt'); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
Die Ausgabe des obigen Programms ist wie im Schnappschuss unten dargestellt:
Im obigen Programm verwenden wir die Funktion file_get_contents(), indem wir den Pfad der Datei übergeben, in der sich die Dateien befinden, um den Inhalt der Datei in eine Zeichenfolge namens filecontents einzulesen. Anschließend wird der Inhalt der Datei als Ausgabe auf dem Bildschirm angezeigt.
PHP-Programm zum Lesen des Inhalts der Datei an dem Speicherort, dessen Pfad als Parameter an die Funktion file_get_contents() übergeben wird:
Code:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/EDUCBA/check1.txt’); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
Die Ausgabe des obigen Programms ist wie im Schnappschuss unten dargestellt:
Im obigen Programm verwenden wir die Funktion file_get_contents(), indem wir den Pfad der Datei übergeben, in der sich die Dateien befinden, um den Inhalt der Datei in eine Zeichenfolge namens filecontents einzulesen. Anschließend wird der Inhalt der Datei als Ausgabe auf dem Bildschirm angezeigt.
PHP-Programm zum Lesen des Inhalts der Datei an dem Speicherort, dessen Pfad als Parameter an die Funktion file_get_contents() übergeben wird:
Code:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/check2.txt'); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
Die Ausgabe des obigen Programms ist wie im Schnappschuss unten dargestellt:
Im obigen Programm verwenden wir die Funktion file_get_contents(), indem wir den Pfad der Datei übergeben, in der sich die Dateien befinden, um den Inhalt der Datei in eine Zeichenfolge namens filecontents einzulesen. Anschließend wird der Inhalt der Datei als Ausgabe auf dem Bildschirm angezeigt.
PHP-Programm zum Lesen des Inhalts der Datei an dem Speicherort, dessen Pfad als Parameter an die Funktion file_get_contents() übergeben wird:
Code:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/check3.txt'); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
Die Ausgabe des obigen Programms ist wie im Schnappschuss unten dargestellt:
Im obigen Programm verwenden wir die Funktion file_get_contents(), indem wir den Pfad der Datei übergeben, in der sich die Dateien befinden, um den Inhalt der Datei in eine Zeichenfolge namens filecontents einzulesen. Anschließend wird der Inhalt der Datei als Ausgabe auf dem Bildschirm angezeigt.
PHP program to read the contents of the file present in the location whose path is passed as a parameter to the file_get_contents() function:
Code:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/check4.txt'); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
The output of the above program is as shown in the snapshot below:
In the above program, we are making use of the file_get_contents() function by passing the path of the file where the files are present to read the contents of the file into a string called filecontents. Then the contents of the file are displayed as the output on the screen.
Das obige ist der detaillierte Inhalt vonPHP file_get_contents. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!