Linux - Server This forum is for the discussion of Linux Software used in a server related context. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
10-20-2010, 07:09 PM
|
#1
|
Member
Registered: Dec 2006
Posts: 381
Rep:
|
trying to delete data from a file with php
hey all i've been using php/fwrite to add text to a file using the below code but how do i remove text from a file?
note that i don't know what line it's on as there will be other content in the file
Code:
<?PHP
$File = "textfile.txt";
$fh = fopen($File, 'a');
$Data = "text to put in the text file";
fwrite($fh, $Data);
fclose($fh);
?>
Last edited by steve51184; 10-20-2010 at 07:11 PM.
|
|
|
10-20-2010, 07:31 PM
|
#2
|
Member
Registered: Jan 2002
Location: Labrador, Canada
Distribution: CentOS, Debian
Posts: 182
Rep:
|
If it's a relatively small file then you could:
- Read the file content into a variable, using file_get_contents()
- Use str_replace() to delete/replace text in the variable,
- Write the altered content backed to the file using fopen(), fwrite(), fclose() as you did in your example.
|
|
|
10-20-2010, 07:32 PM
|
#3
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
sounds good... can you do me an example please?
|
|
|
10-20-2010, 07:49 PM
|
#4
|
Member
Registered: Jan 2002
Location: Labrador, Canada
Distribution: CentOS, Debian
Posts: 182
Rep:
|
Code:
<?php
// "textfile.txt" contains the phrase "all that glitters is not gold."
//
$file = "textfile.txt";
$content = file_get_contents($file);
$content = str_replace('not gold', 'shiny', $content);
$fh = fopen($file, 'w');
fwrite($fh, $content);
fclose($fh);
//
// "textfile.txt" now reads "all that glitters is shiny."
?>
Not tested, but you get the idea
Read up on how each function works in the PHP documentation, e.g., str_replace().
|
|
|
10-20-2010, 08:32 PM
|
#5
|
Member
Registered: Dec 2006
Posts: 381
Original Poster
Rep:
|
works perfect thank you
|
|
|
04-28-2011, 03:20 AM
|
#6
|
Member
Registered: Mar 2011
Posts: 135
Rep:
|
Quote:
Originally Posted by sleddog
Code:
<?php
// "textfile.txt" contains the phrase "all that glitters is not gold."
//
$file = "textfile.txt";
$content = file_get_contents($file);
$content = str_replace('not gold', 'shiny', $content);
$fh = fopen($file, 'w');
fwrite($fh, $content);
fclose($fh);
//
// "textfile.txt" now reads "all that glitters is shiny."
?>
Not tested, but you get the idea
Read up on how each function works in the PHP documentation, e.g., str_replace().
|
wait what this code means?
Code:
$content = str_replace('not gold', 'shiny', $content);
not gold?? shiny??
|
|
|
All times are GMT -5. The time now is 04:58 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|