Re: create file and write content in same code block
- From: Robert Thomason <robert@xxxxxxxx>
- Date: Thu, 31 Jul 2008 14:27:21 -0400
leon.san.email@xxxxxxxxx wrote:
This a modified part of a larger script I made. I couldn't get it
working so I made a smaller part of it - hoping to get it working.
Well it still doesn't work :(
The following code creates the new file, but does not write the
$content strings to the file. It then prints "Did nothing!" instead of
"done!".
<?php
$word = "2002";
$content1 = "one ";
$content2 = "two ";
$content3 = "three";
$fileName = '/home/leke/www/dic/' . $word . '.html';
$handle = fopen($fileName, 'w');
if (file_exists($fileName)) {
print "Did nothing!";
}
else
{
fwrite($handle, "$content1 . $content2 . $content3");
fclose($handle);
print "done!";
}
?>
I cant figure out the problem. Can anyone help me and maybe explain
what went wrong?
Thanks :)
The fopen($filename,'w') function will create the file. Therefore, the file exists, and file_exists() will return true, causing the code to take the "Did nothing" branch.
Try this:
$fileName = '/home/leke/www/dic/' . $word . '.html';
if (file_exists($fileName)) {
print "Did nothing!";
}
else
{
$handle = fopen($fileName, 'w');
fwrite($handle, "$content1 . $content2 . $content3");
fclose($handle);
print "done!";
}
Of course, you probably want to add some error checking after the fopen() call to make sure the file was created properly before writing to it, but this sequence should work.
.
- Follow-Ups:
- Re: create file and write content in same code block
- From: leon . san . email
- Re: create file and write content in same code block
- References:
- create file and write content in same code block
- From: leon . san . email
- create file and write content in same code block
- Prev by Date: Re: Working more efficiently in PHP
- Next by Date: Re: Function inop, but tosses no errors
- Previous by thread: Re: create file and write content in same code block
- Next by thread: Re: create file and write content in same code block
- Index(es):
Relevant Pages
|
Loading