ID: 12098
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: Filesystem function related
Operating System: Win2000 prof
PHP Version: 4.0.6
New Comment:
submitted twice ( Open: #12097 )
Previous Comments:
------------------------------------------------------------------------
[2001-07-12 08:07:32] [EMAIL PROTECTED]
function conf_append($file,$in,$top="<?php\r\n",$bottom=");?>")
{
$ya=file_exists($file)?1:0;
eval("if(\$ourfile=fopen(\$file,'".($ya?'r':'a')."+b'))
{".($ya?"fseek(\$ourfile,-strlen(\$bottom),SEEK_END);":"")."
fwrite(\$ourfile,".(!$ya?"\$top.":"")."\$in.\$bottom);
fclose(\$ourfile);}");
}
We can't change pointer file position when we open it
with 'a+', but may when 'r+'/ So we need for create open with 'a+', and if file exists
'r+'
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=12098&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]