我有一個文件叫filecontent.txt其中包括一些PHP代碼。如何用文件內容替換網頁文件內容?
,我已經叫的index.php另一個文件,
我想更換的的index.php內容與filecontent.txt內容。
有沒有解決方案?
請幫我解決這個問題。
我有一個文件叫filecontent.txt其中包括一些PHP代碼。如何用文件內容替換網頁文件內容?
,我已經叫的index.php另一個文件,
我想更換的的index.php內容與filecontent.txt內容。
有沒有解決方案?
請幫我解決這個問題。
您可以使用PHP的複製功能
如:
<?php
$file = 'example.txt';
$newfile = 'example.txt.bak';
if (!copy($file, $newfile)) {
echo "failed to copy $file...\n";
}
?>
unlink ("index.php");
rename ("filecontent.txt", "index.php");
它沒有按照我的預期工作。 –
結果是什麼,什麼是例外? – nidhin
對不起,回覆遲了, 它現在正在工作.. –