Jump to content

strange fwrite behaviour


angriars

Recommended Posts

Hi,

I cannot write a $_POST value into a file. In fact using:
[tt]
[color=blue]
$fTitle = fopen('title.csv', 'w+');
fwrite($fTitle, stripslashes($_POST['title']));
fclose($fTitle);
[/color]
[/tt]

I obtain a zero length file named 'title.csv', either if it exists or not.
I try with modes "w", "wb", "w+". Same thing.
It's very strange because I debug it with Zend and the file si written at execution time (no zero length and right content) but when the script ends the file seems to be truncated.


Instead, if I use the following code:
[tt]
[color=blue]
$fTitle = fopen('titolo.csv', 'w+');
fwrite($fTitle, 'title');
fclose($fTitle);
[/color]
[/tt]
all works right...

:o

Can anyone help me?
Link to comment
https://forums.phpfreaks.com/topic/30321-strange-fwrite-behaviour/
Share on other sites

What type of machine are you trying this on? If it is Windows, you need to add a line terminater to the fwrite:
[code]<?php
$fTitle = fopen('title.csv', 'w+');
fwrite($fTitle, stripslashes($_POST['title'])."\r\n");
fclose($fTitle);
?>[/code]

Ken

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.