What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » overlaying text on image in php

overlaying text on image in php
Author: Message:
WDZ
Former Admin
*****

Avatar

Posts: 7106
Reputation: 107
– / Male / Flag
Joined: Mar 2002
RE: overlaying text on image in php
There is no "prepend" mode... r+ lets you read and write any position within the file, and the file won't be automatically truncated.

If example.txt contains "aaaaaaaaaa" and you do this...

$fp = fopen('example.txt', 'r+');
fwrite($fp, 'bbbbb');
fclose($fp);


It will contain "bbbbbaaaaa". :p
09-18-2007 01:40 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
overlaying text on image in php - by Supersonicdarky on 09-17-2007 at 10:36 PM
RE: overlaying text on image in php - by Ezra on 09-17-2007 at 11:15 PM
RE: overlaying text on image in php - by Supersonicdarky on 09-17-2007 at 11:18 PM
RE: overlaying text on image in php - by WDZ on 09-17-2007 at 11:21 PM
RE: overlaying text on image in php - by Supersonicdarky on 09-17-2007 at 11:23 PM
RE: overlaying text on image in php - by Ezra on 09-17-2007 at 11:34 PM
RE: overlaying text on image in php - by Supersonicdarky on 09-17-2007 at 11:49 PM
RE: overlaying text on image in php - by roflmao456 on 09-18-2007 at 12:38 AM
RE: overlaying text on image in php - by Supersonicdarky on 09-18-2007 at 12:41 AM
RE: overlaying text on image in php - by WDZ on 09-18-2007 at 01:40 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On