如何用文件内容替换webfile内容?

时间:2011-08-02 09:26:01

标签: php

我有一个名为 filecontent.txt 的文件,其中包含一些php代码。

我还有一个名为 index.php 的文件,

我想用 filecontent.txt 内容替换 index.php 内容。

有没有解决方案?

请帮我解决这个问题。

3 个答案:

答案 0 :(得分:1)

您可以使用php copy功能

例如:

<?php
$file = 'example.txt';
$newfile = 'example.txt.bak';

if (!copy($file, $newfile)) {
    echo "failed to copy $file...\n";
}
?>

PHP COPY

答案 1 :(得分:0)

如果只是替换,你也可以{,3}将index.php和delete filecontent.txt添加到index.php。

答案 2 :(得分:0)

unlink ("index.php");
rename ("filecontent.txt", "index.php");