user623990
user623990

Reputation:

Trying to modify a file with PHP

The function remove_tags has to go into the file and remove </channel></rss>. However I can't seem to get it to work without overwriting the whole file.

<html><body><?php
$file_name = "rss.xml";

if (!file_exists($file_name)) {
        initialize_xml($file_name);
}

remove_tags($file_name);
write_content($file_name);
close_tags($file_name);
finish();

function initialize_xml($name) {
        $rss = fopen($name, 'w+') or die('can\'t open file_init');
        fwrite($rss, "<?xml version=\"1.0\" ?>\n");
        fwrite($rss, "<rss version=\"2.0\">\n");
        fwrite($rss, "<channel>\n");
        fwrite($rss, "<title>CBS IT Update Feed</title>\n");
        fwrite($rss, "<description>This feed will keep users up to date on IT issues that may arise</description>\n");
        fwrite($rss, "<link>http://google.com</link>\n");
        fwrite($rss, "<managingEditor>[email protected]</managingEditor>\n");
        fwrite($rss, "<webMaster>[email protected]</webMaster>\n\n");
        fwrite($rss, "</channel></rss>");
        fclose($rss);
}

function write_content($name) {
        $rss = fopen($name, 'a') or die('can\'t open file_write');
        fwrite($rss, "<item>\n");
        fwrite($rss, "<title>");
        fwrite($rss, $_POST['title']);
        fwrite($rss, "</title>\n");

        fwrite($rss, "<description><![CDATA[");
        fwrite($rss, $_POST['desc']);
        fwrite($rss, "]]></description>\n");

        fwrite($rss, "<date>");
        $today = getdate();
        $timestamp_format = $today['weekday'] . ' ' . $today['month'] . ' ' . $today['mday'] . ' ' . $today['hours'] . ' ' . $today['minutes'] . ' ' . $today['seconds'];
        fwrite($rss, $timestamp_format);
        fwrite($rss, "</date>\n");
        fwrite($rss, "</item>\n\n");
        fclose($rss);
}

function close_tags($name) {
        $rss = fopen($name, 'a') or die('can\'t open file_close');
        fwrite($rss, "</channel></rss>");
        fclose($rss);
}

function remove_tags($name) {
        $lines = file_get_contents('$name');
        str_replace("</channel></rss>", " ", $lines);
        $rss = fopen($name, 'w') or die('can\'t open file_remove');
        fwrite($rss, $lines);
}

function finish() {
        echo "The article <i> ";
        echo $_POST['title'];
        echo "</i>  has been added to the feed.<br>";
        echo "<a href=\"index.html\">Go Back</a> or <a href=\"rss.xml\">View the Feed</a>";
}
?>
</body></html>

Upvotes: 1

Views: 128

Answers (2)

user752897
user752897

Reputation:

you need to replace

str_replace("</channel></rss>", " ", $lines);

with

$lines = str_replace("</channel></rss>", " ", $lines);

in the remove_tags function

Upvotes: 2

Michael Pryor
Michael Pryor

Reputation: 25346

According to the docs on str_replace, your str_replace line should be:

$lines = str_replace("</channel></rss>", " ", $lines);

Also, your file_get_contents call in remove_tags is reading a non existant file because of quotes (which is why $lines is empty when you write it back to the file). That line should look like so:

$lines = file_get_contents($name);

Upvotes: 2

Related Questions