可以使用以下PHP代碼生成一個txt文件:
<?php
// 創建一個文件,并寫入內容
$file = fopen("example.txt", "w") or die("無法打開文件!");
$txt = "Hello, World!";
fwrite($file, $txt);
fclose($file);
echo "txt文件已生成!";
?>
將上述代碼保存為一個php文件,然后在瀏覽器中訪問該文件,即可生成一個名為"example.txt"的txt文件,并向其寫入內容"Hello, World!"。