Download presentation
Presentation is loading. Please wait.
Published byΛαύρα Γιαννακόπουλος Modified over 5 years ago
1
Internet Programming Work with Files in PHP
Copyright © 2003 Pearson Education, Inc.
2
Using files on the Web Server From PHP Scripts
CHAPTER 6 Working with Files: Using files on the Web Server From PHP Scripts Copyright © 2003 Pearson Education, Inc.
3
Objectives To learn to work with files to store and retrieve data
To understand the types of applications that can use File I/O Copyright © 2003 Pearson Education, Inc.
4
Why Use Files Files can provide an easy mechanism for storing data between executions of scripts: store customer data store page hit counts remember end-user preferences store product inventory Copyright © 2003 Pearson Education, Inc.
5
Reading a file the easy way.
You can use the file() function to read an entire file into a PHP array Each array item will be assigned 1 line For example: $inf ='mydata.txt'; $infile = file ($inf); print "$infile[0]"; print "$infile[2]"; Open mydata.txt and read into $infile array. Output the1st and then 3rd line of mydata.txt Copyright © 2003 Pearson Education, Inc.
6
Reading A file the easy way.
So if mydata.txt was stored in same directory at your PHP script and contained: Apples are red. Bananas are yellow. Carrots are orange. Dates are brown. Would output: Using file() works well but does consume memory Can slow scripts down for large files Copyright © 2003 Pearson Education, Inc.
7
Using fopen() to open files
Use the fopen() script to create a connection to a file once connected can read or write a line at a time Copyright © 2003 Pearson Education, Inc.
8
Using file open mods Copyright © 2003 Pearson Education, Inc.
9
Dealing with fopen() failure
The fopen() function can fail for a number of reasons: file location, file permissions, corrupt file Provide an option for fopen() to output a message if it fails: $inf = '/home/phppgm/data/mydata.txt'; $FILEH = fopen($inf, 'r') or die ("Cannot open $inf"); Only run die() when fopen() fails. Copyright © 2003 Pearson Education, Inc.
10
Using fgets() to read Open you open a file for reading use fgets() to read it: Copyright © 2003 Pearson Education, Inc.
11
A Full Script Example Consider an example script that invites end-user to select product number: Provides information about the product. Uses the following HTML form input line: <input type="radio" name="id" value=$item> Also uses the following input file: AC1000:Hammers:122:12.50 AC1001:Wrenches:5:5.00 AC1002:Handsaws:10:10.00 AC1003:Screwdrivers:222:3.00 Copyright © 2003 Pearson Education, Inc.
12
PHP Script 1. <html><head><title>Hardware Inventory</title> </head><body> 2. <font SIZE =5 color=blue> Happy Harry's Hardware Inventory 3. <br></font><?php $id = $_POST = [“id”]; 4. $inf='/home/phppgm/data/infile.txt'; 5. $FILEH = fopen($inf, 'r') or die ("Cannot open $inf"); 6. $inline = fgets($FILEH, 4096); 7. $found=0; 8. while (!feof($FILEH) && !($found)) { list($ptno,$ptname,$num,$price) = split (':',$inline); if ($ptno == $id) { print '<table border=1>'; print '<th> ID <th> Part <th> Count <th> Price '; print "<tr><td> $ptno </td><td>$ptname</td>"; print "<td> $num </td><td>\$$price</td></tr>"; print '</table>'; $found = 1; } $inline = fgets($FILEH, 4096); } if ($found != 1) { print "Error: PartNo=$id not found"; } fclose ($FILEH); 24. ?></body></html> Copyright © 2003 Pearson Education, Inc.
13
The Output ... Copyright © 2003 Pearson Education, Inc.
14
Writing to Files You can use the fputs() function
The above outputs: “My script was here” into the file that $OFILE points to Copyright © 2003 Pearson Education, Inc.
15
Putting it all together
Consider the following script that: opens a file, writes one line to it closes the file $inf ='/home/phppgm/data/log.txt'; $FILEH = fopen($inf, 'w') or die("Cannot open $inf"); fputs($FILEH, 'Apples are red'); fclose ($FILEH); Copyright © 2003 Pearson Education, Inc.
16
A Full Script Example Consider another example that appends end-user comments to the end of a file: Asks end-user for comments about site. Uses the following HTML form input line: <br><textarea rows="1" cols="50" name="comments"></textarea> Copyright © 2003 Pearson Education, Inc.
17
PHP Script 1. <html> <head><title>Log Comments</title></head> <body> 2.<?php 3. $logfile='/home/phppgm/data/comments.txt'; 4. $OUTF = fopen($logfile, 'a+') or die("Cannot open $logfile"); 5. $today = date('m/d/Y:h:m'); 6. $msg = "$today:”.$_POST[‘comments’].”\n"; 7. print "Just Logged: <br> $msg"; 8. fputs($OUTF, $msg); 9. fclose($OUTF); 10.?> 11. </body></html> Copyright © 2003 Pearson Education, Inc.
18
Locking a File Web application have potential for many users to execute same script at same time If scripts attempt to write the same file at same instance in time, it may corrupt the file A corrupted file is a useless unintelligible mixture of data. Copyright © 2003 Pearson Education, Inc.
19
Using flock PHP provide a flock() function that can ensure only 1 script at a time writes to a file. Use it in your scripts as a defense against file corruption Copyright © 2003 Pearson Education, Inc.
20
Tip: Using the newline character \n
Use the \n character to output a new line character into the file. If you omit the new line character, the appended text will appear together on the same line if you run the script twice, for example: My script was hereMy script was here If your script puts an \n at the lines’ end: My script was here Copyright © 2003 Pearson Education, Inc.
21
Reading and Writing Files
When reading and writing from same file you can use the rewind() function: Resets the file pointer to start of file: $ret = rewind(filehandle); For example consider: 1. $FILEH = fopen('myfile.txt', 'r+'); 2. $inline = fgets($FILEH, 4096); 3. rewind($FILEH); 4.$ret= fputs($FILEH, 'Z'); Copyright © 2003 Pearson Education, Inc.
22
Reading and Writing Files
For example consider: 1. $FILEH = fopen('myfile.txt', 'r+'); 2. $inline = fgets($FILEH, 4096); 3. rewind($FILEH); 4.$ret= fputs($FILEH, 'Z'); Suppose myfile.txt contains: A B C After script segment runs, the file will contain: Z Copyright © 2003 Pearson Education, Inc.
23
A Full Script Example Consider a script that implements a web page hit counter: Use counter file at /home/phppgm/logfiles/ctr.txt. Can place into this file and access it as: <?php include 'counter.php' ?> Copyright © 2003 Pearson Education, Inc.
24
A Full Script Example: Accessing the counter
Can place into this file and access it as: <?php include 'counter.php' ?> For example: <html><head><title>Harry's Place </title> </head><body> <font size=5 color=blue>Happy Harry's Hardware Home</font> <br>Hit Count:<?php include 'counter.php' ?> </body></html> Copyright © 2003 Pearson Education, Inc.
25
PHP Script 1. <?php 2. $ctfile='/home/phppgm/logfiles/ctr.txt';
3. $FILEH = fopen($ctfile, 'r+') or die ("Cannot open $ctfile"); 4. flock($FILEH, LOCK_EX) or die ("Cannot lock file $outf"); 5. $ctr = fgets($FILEH, 4096) or die ("Cannot gets $ctfile"); 6. $ctr = rtrim($ctr, '\n'); 7. if (is_numeric($ctr)){ $count= $ctr + 1; rewind ($FILEH); $ret= fputs($FILEH, $count); print ("$count"); 12. } else { print "Error: ctr=$ctr <=not numeric value"; 14. } 15. fclose ($FILEH); 16. ?> Copyright © 2003 Pearson Education, Inc.
26
The Output ... Copyright © 2003 Pearson Education, Inc.
27
Another Full Script Example
Consider another example that implements an on-line survey: Asks end-user to select favorite tool <input type="radio" name="tool" value="hammer" checked> Hammer <input type="radio" name="tool" value="wrench"> Wrench <input type="radio" name="tool" value="sdriver"> Screwdriver <input type="radio" name="tool" value="fryingpan"> Frying Pan Use survey file /home/phppgm/data/survey1.txt. 0:0:0:0 initial value Copyright © 2003 Pearson Education, Inc.
28
PHP Script 1. <html><head><title>Happy Harry's Hardware Survey </title> 2. </head><body> 3. <font size=5 color="blue">Survey Results</font> 4. <?php $tool = $_POST[“tool”]; 5. $ctfile='/home/phppgm/data/survey1.txt'; 6. $SURVEY = fopen($ctfile, 'r+') or die("Cannot open $ctfile"); 7. flock($SURVEY, LOCK_EX) or die ("Cannot lock file $outf"); 8. $inline = fread($SURVEY, 4096); 9. list($hammer, $wrench, $sdriver, $fpan) = split(':', $inline); 10. if ($tool == 'hammer'){ $hammer = $hammer + 1; 12. } elseif ($tool == 'sdriver') { $sdriver = $sdriver + 1; 14. } elseif ($tool == 'wrench'){ $wrench = $wrench + 1; 16. } elseif ($tool == 'fryingpan'){ $fpan = $fpan + 1; 18. } else { die ('ERROR: Illegal call'); 20. } 21. $ct=$hammer + $sdriver + $wrench + $fpan; 22. print "<br>Hammer=$hammer Wrench=$wrench Screwdriver=$sdriver Frying Pan=$fpan Total votes=$ct"; 23. rewind($SURVEY); 24. $ret= fputs($SURVEY, "$hammer:$wrench:$sdriver:$fpan"); 25. fclose ($SURVEY);?></body></html> Copyright © 2003 Pearson Education, Inc.
29
The Output ... Copyright © 2003 Pearson Education, Inc.
30
Summary Working with files enable scripts to store data for long periods of time. file() - read file into an array fopen() - open a file fgets() - read a line from file fputs() - write to a file. flock() - lock access to file. Copyright © 2003 Pearson Education, Inc.
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.