Jason Carson wrote:
Yes, I am trying to write stuff to a file with PHP but in between the
tags and without deleting what is already in the file.
The only way is to read the file into memory, manipulate it there, and
then rewrite it.
Use a regex to get rid of the last closing tag, append
> On Fri, Jul 3, 2009 at 06:01, Jason Carson wrote:
>> Hello everybody,
>>
>> How would I go about writing stuff to a file but in between the
>> tags?
>
> The current industry standard is a combination of text editor and
> keyboard, but there are many options.
>
> More specifically, are yo
2009/7/3 Sándor Tamás (HostWare Kft.) :
> The classic method is:
> 1.) read the whole file into an array of strings.
> 2.) search for the last line
> 3.) insert a string BEFORE the last line.
> 4.) write back the whole file to the same name
>
> Classic file handling does allow you to append to the
On Fri, Jul 3, 2009 at 06:01, Jason Carson wrote:
> Hello everybody,
>
> How would I go about writing stuff to a file but in between the
> tags?
The current industry standard is a combination of text editor and
keyboard, but there are many options.
More specifically, are you trying to wr
Jason Carson wrote:
> How would I go about writing stuff to a file but in between the
> tags?
>
http://www.php.net/file_put_contents
-- Paul
http://www.paulscott.za.net/
http://twitter.com/paulscott56
http://avoir.uwc.ac.za
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, vi
Jason Carson wrote:
Hello everybody,
How would I go about writing stuff to a file but in between the
tags?
Example, say I have config.php as follows...
How would I go about adding stuff at the end of the file, but before the
?> tag?
IMHO that's kind of dangerous.
Better to have an xml f
The classic method is:
1.) read the whole file into an array of strings.
2.) search for the last line
3.) insert a string BEFORE the last line.
4.) write back the whole file to the same name
Classic file handling does allow you to append to the end of a file, or
recreate as a whole.
Usually thes
2009/7/3 Jason Carson :
> Hello everybody,
>
> How would I go about writing stuff to a file but in between the
> tags?
>
> Example, say I have config.php as follows...
>
>
> $hostname = "localhost";
> $database = "database";
> $username = "username";
> $password = "password";
>
> ?>
>
> How would
On Fri, 22 Nov 2002, Jason Wong wrote:
> On Friday 22 November 2002 16:34, gamin wrote:
> > Hello,
> > file as the data is being written, not when the file is closed
> I think you should try fclose() the file before you die!
Or, if you need to force the data out to disk while writing, use
fflu
On Friday 22 November 2002 16:34, gamin wrote:
> Hello,
>
> im running Red Hat 7.2 with PHP 4.0.6. How would i go about writing to a
> file as the data is being written, not when the file is closed
>
> #!/usr/bin/php -q
>
> $fp=fopen('t', "a");
> if ($fp === false)
> die("could not open file")
On Tue, Aug 13, 2002 at 04:02:51PM -0230, Kondwani Spike Mkandawire wrote:
>
> $file = fopen("Counter.txt", "r+");
> $counter = fread($file, filesize("Counter.txt"));
> fwrite($file, "$counter", strlen($counter));
... snip ...
> // For some reason the updated value is not written
> // to C
heyo,
http://devhome.net/php/tutorials/230101.html
will be nice
--- adam <[EMAIL PROTECTED]> wrote: > how do i write to
the beginning of a file instead of
> the end?
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional co
On Sun, Mar 25, 2001 at 03:39:28AM -0800, adam wrote:
> how do i write to the beginning of a file instead of the end?
fseek will help. With it you con move the pointer to the file beginning.
http://www.php.net/manual/en/function.fseek.php will have details.
-fkr
--
gpg-fingerprint: 076E 1E87
Hi,
What was so difficult about implementing my last post?
--
PHP General 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]
On Friday 23 March 2001 06:17, you wrote:
> how would that look on a code view? i plan to write the variable
> $message on top of the existing data
>
> > Don't even bother with that previous answer. You have what you want
> > to write in a string, $new. Read the file and put that into another
>
nevermind ^^ i am jsut going to have posts that go from top to bottom oldest
to newest
--
PHP General 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]
how would that look on a code view? i plan to write the variable $message on
top of the existing data
""hi"" <[EMAIL PROTECTED]> wrote in message
99ektl$gf0$[EMAIL PROTECTED]">news:99ektl$gf0$[EMAIL PROTECTED]...
> Don't even bother with that previous answer. You have what you want to
> write in
Don't even bother with that previous answer. You have what you want to
write in a string, $new. Read the file and put that into another string,
$previous. Then concatenate the strings with the "." operator:
$previous=$new . $previous
and write $previous to the file.
--
PHP General Mailin
On Fri, 23 Mar 2001 12:39, adam wrote:
> how might i write to a file called "comment.php.comment" and only write
> the text specified to the top of the file, instead of writing it to the
> bottom?
You need several steps to achieve this:
read all of comment.php.comment into an array
open a temp f
19 matches
Mail list logo