Làm thế nào: Sử dụng file_get_contents: $content = file_get_contents("example.txt"); echo $content; Mẫu Đầu ra:
Hello, World! This is content from the text file. Sử dụng fopen và fgets: $handle = fopen("example.txt", "r"); if ($handle) { while (($line = fgets($handle)) !== false) { echo $line; } fclose($handle); } Mẫu Đầu ra:
Hello, World! This is content from the text file. Viết vào một tệp với file_put_contents: $newContent = "Adding new text."; file_put_contents("example.